| 123456789101112131415161718192021222324 |
- PKGS=sdl2 glew
- CFLAGS=-std=c99 -m64 -Og -ggdb \
- -pedantic -Wall -Wextra -Wshadow \
- -Wcast-align -Wunused -Wconversion -Wmisleading-indentation \
- -Wduplicated-cond -Wduplicated-branches -Wlogical-op \
- -Wdouble-promotion -Wformat=2 -Wbad-function-cast \
- -Wmissing-declarations -Wmissing-parameter-type \
- -Wmissing-prototypes -Wnested-externs -Werror \
- $(shell pkg-config --cflags $(PKGS))
- LIBS=$(shell pkg-config --libs $(PKGS)) -lm -lc
- SRCS=$(wildcard src/*)
- .PHONY: run
- run: TAGS ged
- ./ged
- ged: $(SRCS)
- $(CC) $(CFLAGS) -o ged src/main.c $(LIBS)
- TAGS: $(SRCS)
- exuberant-ctags --kinds-all=* --totals=yes -e -R
|