X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=compile%2FMakefile;h=61b4dccd6db1dff61113c9a42d35e4bbbf93f300;hb=c08b156abb0b2b1b1335cb1ada0c08758553238b;hp=2a0c45df71c3fb7237db8dd9f9d7f9b9565778ac;hpb=ba62a17e56ee5b1f17f9ebb7c0c968aac8fdf226;p=grml-scripts.git diff --git a/compile/Makefile b/compile/Makefile index 2a0c45d..61b4dcc 100644 --- a/compile/Makefile +++ b/compile/Makefile @@ -1,4 +1,4 @@ -PROGS = ip-screen pong vmware-detect align cpu-screen dpkg_not_running reread_partition_table +PROGS = vmware-detect dpkg_not_running reread_partition_table grml-runtty #ifndef CFLAGS CFLAGS = -O2 -Wall -s @@ -14,25 +14,17 @@ CC = gcc all: $(PROGS) -ip-screen: ip-screen.c - diet $(CC) $(CFLAGS) -o $@ $^ - -cpu-screen: cpu-screen.c - diet $(CC) $(CFLAGS) -o $@ $^ - -pong: pong.c - vmware-detect: vmware-detect.c diet $(CC) $(CFLAGS) -o $@ $^ dpkg_not_running: dpkg_not_running.c diet $(CC) $(CFLAGS) -o $@ $^ -align: align.c - $(CC) -Wall -o align align.c - reread_partition_table: reread_partition_table.c diet $(CC) $(CFLAGS) -o $@ $^ +grml-runtty: grml-runtty.c + $(CC) $(CFLAGS) -o $@ $^ + clean: rm -f $(PROGS)