1
0
mirror of https://github.com/upx/upx.git synced 2025-08-11 22:52:30 +08:00

All stubs now depend on Makefile and thus will get rebuilt more often.

This commit is contained in:
Markus F.X.J. Oberhumer
2006-08-24 01:34:06 +02:00
parent 62e29a6546
commit c03cb3a11c

View File

@ -127,6 +127,7 @@ override T = $(basename $(notdir $@))
# // setup toolchain globals # // setup toolchain globals
# ************************************************************************/ # ************************************************************************/
# strip trailing whitespace
RTRIM := sed -e 's/[ ]*$$//' RTRIM := sed -e 's/[ ]*$$//'
# default settings for $(tc_list) # default settings for $(tc_list)
@ -321,6 +322,7 @@ i086-dos16.sys.h : $(srcdir)/src/$$T.S
# /*********************************************************************** # /***********************************************************************
# // i386-bsd.elf # // i386-bsd.elf
# // i386-openbsd.elf
# ************************************************************************/ # ************************************************************************/
# info: we use the tc settings from i386-linux.elf # info: we use the tc settings from i386-linux.elf
@ -709,12 +711,11 @@ tmp/powerpc-linux.elf-main.o : $(srcdir)/src/$$T.c
# // dependencies # // dependencies
# ************************************************************************/ # ************************************************************************/
ifneq ($(STUBS),) ifneq ($(strip $(STUBS)),)
# FIXME: we want a dependency-only prerequisite here # FIXME: we want a dependency-only prerequisite here
##$(STUBS): | tmp/.tmp-stamp $(STUBS): tmp/.tmp-stamp $(MAKEFILE_LIST)
##$(STUBS): $(MAKEFILE_LIST)
endif endif
-include tmp/*.d -include tmp/*.d
# vi:ts=8:nowrap # vi:ts=8:noet:nowrap