Makefile 388 B

123456789101112131415161718192021222324
  1. # Makefile for src/mod/update.mod/
  2. srcdir = .
  3. depcomp = /bin/sh ../../../build/autotools/depcomp
  4. #This line is simply for configure to generate .deps/
  5. OBJS = update.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: ../update.o
  14. clean:
  15. @rm -f .depend *.o *~
  16. distclean: clean