Fix shellcheck errors/warnings
[cursedutils.git] / Makefile
blobc2c50d8c315ea75566e2d033de897788b002d751
1 .PHONY: all clean test
3 include config.mk
5 SRCS != find src -type f -regex ".*\.c"
6 OBJS = ${SRCS:.c=.o}
7 PROGS = ${OBJS:.o=}
9 all: ${PROGS}
11 test: ${PROGS}
12 (cd test && ./harness.sh)
14 clean:
15 ${RM} -f ${OBJS} ${PROGS}