Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. SOURCES = $(wildcard *.c)
  2. DEPS=toxcore
  3. CC=gcc
  4. CFLAGS=-g -Wall #-std=c99
  5. CFLAGS += $(shell pkg-config --cflags $(DEPS))
  6. LDFLAGS=-g -pthread -lm -static -lrt
  7. LDFLAGS += $(shell pkg-config --static --libs $(DEPS))
  8. DSO_LDFLAGS=-g -pthread -lm -lrt
  9. DSO_LDFLAGS += $(shell pkg-config --libs $(DEPS))
  10. OBJECTS=$(SOURCES:.c=.o)
  11. INCLUDES = $(wildcard *.h)
  12. PYTHON = /usr/bin/env python3
  13. INSTALL = install -C
  14. INSTALL_MKDIR = $(INSTALL) -d -m 755
  15. prefix ?= /usr
  16. bindir ?= $(prefix)/bin
  17. # Targets
  18. all: tuntox tuntox_nostatic
  19. gitversion.h: FORCE
  20. @if [ -f .git/HEAD ] ; then echo " GEN $@"; echo "#define GITVERSION \"$(shell git rev-parse HEAD)\"" > $@; fi
  21. FORCE:
  22. tox_bootstrap.h:
  23. $(PYTHON) generate_tox_bootstrap.py
  24. %.o: %.c $(INCLUDES) gitversion.h tox_bootstrap.h
  25. @echo " CC $@"
  26. @$(CC) -c $(CFLAGS) $< -o $@
  27. tuntox: $(OBJECTS) $(INCLUDES)
  28. $(CC) -o $@ $(OBJECTS) -lpthread $(LDFLAGS)
  29. tuntox_nostatic: $(OBJECTS) $(INCLUDES)
  30. $(CC) -o $@ $(OBJECTS) -lpthread $(DSO_LDFLAGS)
  31. cscope.out:
  32. @echo " GEN $@"
  33. @cscope -bv ./*.[ch] &> /dev/null
  34. clean:
  35. rm -f *.o tuntox cscope.out gitversion.h tox_bootstrap.h
  36. install: tuntox_nostatic
  37. $(INSTALL_MKDIR) -d $(DESTDIR)$(bindir)
  38. cp tuntox_nostatic $(DESTDIR)$(bindir)/tuntox
  39. .PHONY: all clean tuntox