From: solar <> Date: Fri, 23 Dec 2005 10:41:45 +0000 (+0000) Subject: Added target 'todolist' to get all 'TODO' comments left. X-Git-Url: https://pd.if.org/git/?a=commitdiff_plain;h=135293874edb88dbc8baf3639c5c322b7ec743fb;p=pdclib.old Added target 'todolist' to get all 'TODO' comments left. --- diff --git a/Makefile b/Makefile index 24cfbae..802e28e 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,9 @@ clean: dist: @tar czf pdclib.tgz $(ALLFILES) +todolist: + -@for file in $(ALLFILES); do grep -H TODO $$file; done; true + %.o: %.c Makefile @$(CC) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@