Start TP3

This commit is contained in:
flyingscorpio@pinebookpro 2021-11-02 13:15:41 +01:00
parent c7d342e309
commit 28887a04d7

View file

@ -0,0 +1,11 @@
CFLAGS=-lm
C_FILES=$(shell find . -name '*.*')
TARGETS=$(notdir $(basename ${C_FILES}))
all: ${TARGETS}
@for target in ${TARGETS}; do \
grep -q $${target} ../../.gitignore || echo $${target} >> ../../.gitignore; \
done
clean:
rm -f ${TARGETS}