Makefile 390 B

123456789101112131415161718192021222324252627282930
  1. #
  2. COREPATH=../../../src
  3. include $(COREPATH)/Makefile.defs
  4. include $(COREPATH)/Makefile.targets
  5. auto_gen=
  6. NAME=protoshoot
  7. RELEASE=0.2
  8. ifeq ($(SCTP),0)
  9. C_DEFS:=$(filter-out -DUSE_SCTP, $(C_DEFS))
  10. else
  11. ifneq (,$(findstring -DUSE_SCTP,$(C_DEFS)))
  12. SCTP?=1
  13. endif
  14. endif
  15. ifeq ($(SCTP),1)
  16. ifeq ($(OS), linux)
  17. LIBS+= -lsctp
  18. endif
  19. endif
  20. include $(COREPATH)/Makefile.utils
  21. $(NAME).o:
  22. modules: