Updated Makefile.

committer: mfx <mfx> 1147081156 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2006-05-08 09:39:16 +00:00
parent 9bb6ba9311
commit 9fb4af8658

View File

@ -1,7 +1,14 @@
# Makefile for armpe_tester
MAKEFLAGS += -rR
SHELL = /bin/sh
# update path for our special stub build tools
ifneq ($(wildcard $(HOME)/local/bin/bin-upx),)
export PATH := $(HOME)/local/bin/bin-upx:$(PATH)
endif
all: armpe_tester wtest.exe
armpe_tester: armpe_tester.c
@ -12,7 +19,7 @@ wtest.exe: armpe_tester.c
mostlyclean clean distclean maintainer-clean:
rm -f *.d *.o *.obj
rm -f armpe_tester
rm -f armpe_tester wtest.exe
.PHONY: all mostlyclean clean distclean maintainer-clean