Makefile 143 B

123456789101112
  1. CPPFLAGS += -I.
  2. LDLIBS = -lelf -lpopt -lbeecrypt
  3. all: debugedit
  4. debugedit: debugedit.o hashtab.o
  5. clean:
  6. rm -f *.o debugedit
  7. .PHONY: clean