]> mop.ddnsfree.com - git repositories - makesimple.git/commitdiff
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 d6053109be60ac2ff5e9820d0a6358c2ce494090..748baae79499ab68d95d1b2e0aa999a7d0180bfe 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