X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=compile%2FMakefile;h=a5d42c36916971f5626c0fa8f655c3853c9e03fa;hb=a753f245b085d1f2e213e0b4d66c8041a3a0d4b7;hp=2a0c45df71c3fb7237db8dd9f9d7f9b9565778ac;hpb=ba62a17e56ee5b1f17f9ebb7c0c968aac8fdf226;p=grml-scripts.git diff --git a/compile/Makefile b/compile/Makefile index 2a0c45d..a5d42c3 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 grml-runtty #ifndef CFLAGS CFLAGS = -O2 -Wall -s @@ -14,25 +14,14 @@ 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 + diet $(CC) $(CFLAGS) -o $@ $^ -lcompat clean: rm -f $(PROGS)