SRCS=$(shell find ./src -name '*.c' -type f) HDRS=$(shell find ./src -name '*.h' -type f) CFLAGS=-ansi -Wno-builtin-declaration-mismatch -Wall -Wextra -pedantic cint: ${SRCS} ${HDRS} gcc -ggdb ${CFLAGS} $^ -o $@ tags: ${SRCS} ${HDRS} ctags --kinds-all=* --totals=yes $^