Makefile 381 B

1234567891011121314151617181920212223
  1. # Makefile for src/mod/ctcp.mod/
  2. srcdir = .
  3. depcomp = /bin/sh ../../../build/autotools/depcomp
  4. #This line is simply for configure to generate .deps/
  5. OBJS = ctcp.o
  6. include ./.deps/includes
  7. include ../mod.mk
  8. doofus:
  9. @echo ""
  10. @echo "Let's try this from the right directory..."
  11. @echo ""
  12. @cd ../../../ && make
  13. static: ../ctcp.o
  14. clean:
  15. @rm -f .depend *.o *~
  16. distclean: clean