1
0
mirror of https://github.com/upx/upx.git synced 2025-08-11 22:52:30 +08:00
committer: mfx <mfx> 979237786 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2001-01-11 18:29:46 +00:00
parent 5f3bdaeebe
commit 8614bca405
2 changed files with 8 additions and 10 deletions

View File

@ -1,11 +1,7 @@
# Toplevel Makefile for UPX
all:
$(MAKE) -C src/stub
$(MAKE) -C src
$(MAKE) -C doc
mostlyclean clean distclean maintainer-clean:
all mostlyclean clean distclean maintainer-clean:
$(MAKE) -C src/stub/util/sstrip $@
$(MAKE) -C src/stub $@
$(MAKE) -C src $@
$(MAKE) -C doc $@
@ -14,8 +10,7 @@ dist: distclean
false
zip:
cd .. && rm -f upx-currenz.zip && zip -r upx-current.zip upx
cd .. && rm -f upx-current.zip && zip -r upx-current.zip upx
cvs-admin-ko:
cvs admin -ko .

View File

@ -1,7 +1,10 @@
# Makefile for sstrip
sstrip: sstrip.c
gcc -O2 -g -Wall -W -o sstrip $<
gcc -O2 -g -Wall -W -o $@ $<
clean:
mostlyclean clean distclean maintainer-clean:
rm -f sstrip
.PHONY: all mostlyclean clean distclean maintainer-clean