typo fixed in makefile master
authorMatteo Nastasi <nastasi@alternativeoutput.it>
Tue, 9 Aug 2011 13:10:39 +0000 (15:10 +0200)
committerMatteo Nastasi <nastasi@alternativeoutput.it>
Tue, 9 Aug 2011 13:10:39 +0000 (15:10 +0200)
makefile

index d605310..748baae 100644 (file)
--- a/makefile
+++ b/makefile
@@ -16,9 +16,9 @@ ALL: $(TARGET)
        $(CC) -o $@ $<
 
 clean:
-        rm -f $(EXE) $(OBJ) *~ $(TARGET)
+       rm -f $(EXE) $(OBJ) *~ $(TARGET)
 
 pkg:
-        tar -zcv --transform="s,^,$(PKGNAME)-$(VER)/,"  -f ../$(PKGNAME)_$(VER).tgz *
+       tar -zcv --transform="s,^,$(PKGNAME)-$(VER)/,"  -f ../$(PKGNAME)_$(VER).tgz *
 
 .PHONY: clean pkg ALL