Makefile 438 B

1234567891011121314151617181920212223
  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/
  6. OBJ = $(patsubst %.cc,%.o,$(shell find src/ -name *.cc))
  7. all: hivemind
  8. hivemind: $(OBJ)
  9. $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
  10. package: hivemind
  11. tar --gzip -cf hivemind-release.tar.gz hivemind resource/
  12. %.o: %.cc
  13. $(CC) -c -o $@ $(CFLAGS) ${INCS} $<
  14. .PHONY: clean
  15. clean:
  16. -$(RM) $(shell find . -name *.o) hivemind