Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 15 lines 278 B view raw
1--- a/Makefile 2+++ b/Makefile 3@@ -8,10 +8,10 @@ 4 INSDIR = /usr/bin 5 6 ttaenc: $(patsubst %.c, %.o, $(wildcard *.c)) 7- gcc $^ -o $@ $(CFLAGS) 8+ $(CC) $^ -o $@ $(CFLAGS) 9 10 %.o: %.c 11- gcc -c $(CFLAGS) $< 12+ $(CC) -c $(CFLAGS) $< 13 14 install: 15 [ -d "$(INSDIR)" ] || mkdir $(INSDIR)