mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
22 lines
256 B
Makefile
22 lines
256 B
Makefile
# Toplevel Makefile for UPX
|
|
|
|
all:
|
|
$(MAKE) -C src/stub
|
|
$(MAKE) -C src
|
|
$(MAKE) -C doc
|
|
|
|
clean:
|
|
$(MAKE) -C src/stub $@
|
|
$(MAKE) -C src $@
|
|
$(MAKE) -C doc $@
|
|
|
|
distclean: clean
|
|
|
|
dist:
|
|
sh ./maint/util/laszlo.sh
|
|
|
|
.PHONY: all clean distclean dist
|
|
|
|
.NOEXPORT:
|
|
|