Release new version 2.1.1
[grml-scripts-core.git] / compile / Makefile
index 8f29c0f..a1a24a6 100644 (file)
@@ -1,7 +1,7 @@
-PROGS = ip-screen pong vmware-detect align cpu-screen dpkg_not_running reread_partition_table gtf
+PROGS = ip-screen cpu-screen
 
 #ifndef CFLAGS
-CFLAGS = -O2 -Wall
+CFLAGS = -O2 -Wall -s
 #endif
 
 #ifndef LDFALGS
@@ -16,26 +16,9 @@ all: $(PROGS)
 
 ip-screen: ip-screen.c
        diet $(CC) $(CFLAGS) -o $@ $^
-       strip --strip-all $@
 
 cpu-screen: cpu-screen.c
        diet $(CC) $(CFLAGS) -o $@ $^
-       strip --strip-all $@
-
-pong: pong.c
-
-vmware-detect: vmware-detect.c
-
-dpkg_not_running: dpkg_not_running.c
-
-align: align.c
-       $(CC) -Wall -o align align.c
-
-reread_partition_table: reread_partition_table.c
-       diet $(CC) -s -Os -o reread_partition_table reread_partition_table.c
-
-gtf: gtf.c
-       $(CC) gtf.c -lm -Wall -o gtf
 
 clean:
        rm -f $(PROGS)