+clean
authorshort <>
Mon, 5 Aug 2002 19:01:21 +0000 (19:01 +0000)
committershort <>
Mon, 5 Aug 2002 19:01:21 +0000 (19:01 +0000)
Cosmetic: Cleanup

Makefile

index 87f0664..fd02f7e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,11 @@
 #      $Id$
 
-all: badblock-guess
+TARGETS=badblock-guess
+
+all: $(TARGETS)
 
 badblock-guess: badblock-guess.c
        gcc -s -O2 -Wall -static `glib-config --cflags glib` -o $@ $< `glib-config --libs glib` -lext2fs
+
+clean:
+       $(RM) $(TARGETS)