diff --git a/Makefile b/Makefile index 3a06632..41db27e 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ TAIL = tail GREP = grep AWK = awk STRIP = strip -s +UPX = upx # Déclaration des options du compilateur COPTI = -O3 @@ -70,6 +71,7 @@ LDFLAGS += -lGL4Dummies $(shell sdl2-config --libs) -lSDL2_mixer -lSDL2_image - all: $(PROGNAME) all: strip +all: upx $(PROGNAME): $(OBJ) $(CC) $(OBJ) $(LDFLAGS) -o $(PROGNAME) @@ -86,6 +88,9 @@ debug: $(PROGNAME) strip: $(STRIP) $(PROGNAME) +upx: + $(UPX) $(PROGNAME) + dist: distdir $(CHMOD) -R a+r $(distdir) $(TAR) zcvf $(distdir).tgz $(distdir)