Makefile 658 B

12345678910111213141516171819202122232425262728293031
  1. # Makefile for src/mod/channels.mod/
  2. srcdir = .
  3. depcomp = /bin/sh ../../../autotools/depcomp
  4. #This line is simply for configure to generate .deps/
  5. OBJS = channels.o
  6. include ./.deps/includes
  7. doofus:
  8. @echo ""
  9. @echo "Let's try this from the right directory..."
  10. @echo ""
  11. @cd ../../../ && make
  12. static: ../channels.o
  13. ../channels.o:
  14. @echo -e "Compiling: \033[1mchannels\033[0m"
  15. source='channels.c' object='$@' depfile='.deps/channels.Po' tmpdepfile='.deps/channels.TPo' depmode=$(CCDEPMODE) $(depcomp) \
  16. $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(srcdir)/channels.c
  17. @rm -f ../channels.o
  18. @mv channels.o ../
  19. clean:
  20. @rm -f .depend *.o *~
  21. distclean: clean