Makefile 297 B

123456789101112131415161718192021
  1. # Makefile for src/mod/server.mod/
  2. srcdir = .
  3. OBJS = server.o
  4. include ./.deps/includes
  5. include $(top_srcdir)/build/build.mk
  6. doofus:
  7. @echo ""
  8. @echo "Let's try this from the right directory..."
  9. @echo ""
  10. @cd ../../../ && make
  11. static: $(OBJS)
  12. clean:
  13. @rm -f .depend *.o *~
  14. distclean: clean