diff options
author | JSDurand <mmemmew@gmail.com> | 2021-07-11 18:53:05 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-07-11 18:53:05 +0800 |
commit | 43d5fc19e5caf8a50b547efb1bde05a5cf158311 (patch) | |
tree | a815f8ab2218b0604654af6f72864e87c9677108 /makefile | |
parent | 6c358a842baaf6d211a5c8c1717d815e7813ed96 (diff) |
makefile: fix a formula
It was added as a temporary hack and is no longer needed.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,8 +19,8 @@ include $(SOURCES:.c=.d) TAGS: *.c *.h etags $+ -parser.o : parser.c parser.h util.h instrument.h mix.h - $(CC) $(CPPFLAGS) $< -o $@ +# parser.o : parser.c parser.h util.h instrument.h mix.h +# $(CC) $(CPPFLAGS) $< -o $@ main: $(SOURCES:.c=.o) $(CC) $(LIBS) -o $@ $+ |