Makefile 209 B

1234567891011121314151617
  1. include ../defs.mk
  2. CFLAGS += -DNDEBUG
  3. TARGET = run-lisp-trans
  4. all: $(TARGET)
  5. run-lisp-trans: run-lisp-trans.o
  6. clean:
  7. rm -f $(TARGET) *.o
  8. install: run-lisp-trans
  9. install -m 555 run-lisp-trans /usr/bin