Makefile 193 B

1234567891011
  1. CFLAGS=-Wall -Wextra -Wswitch-enum -ggdb -I./thirdparty/
  2. .PHONY: all
  3. all: examples test
  4. test: test.c jim.h
  5. $(CC) $(CFLAGS) -o test test.c
  6. .PHONY: examples
  7. examples:
  8. $(MAKE) -C examples/