Makefile 579 B

1234567891011121314151617181920212223242526272829
  1. CC= g++
  2. CFLAGS= -g -std=c++17 -Wall
  3. RM= rm -f
  4. LIBS = -lm -lpthread -lmstch -static
  5. INCS = -I./src/ -I./lib/crow/include/ -Ilib/mstch/include/
  6. OBJ = $(patsubst %.cc,%.o,$(shell find src/ -name *.cc))
  7. all: hivemind
  8. lib/mstch/src/libmstch.a:
  9. cd lib/mstch && \
  10. cmake . && \
  11. make
  12. hivemind: $(OBJ) lib/mstch/src/libmstch.a
  13. $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
  14. package: hivemind
  15. tar --gzip -cf hivemind-release.tar.gz hivemind resource/
  16. %.o: %.cc
  17. $(CC) -c -o $@ $(CFLAGS) ${INCS} $<
  18. .PHONY: clean
  19. clean:
  20. -$(RM) $(shell find . -name *.o) hivemind
  21. -cd lib/mstch && make clean