* Makefile target dependancy fix
This commit is contained in:
parent
fd9c1b00bb
commit
e905b369c3
1 changed files with 4 additions and 4 deletions
|
@ -535,15 +535,15 @@ DO_WINDRES=$(WINDRES) -i $< -o $@
|
||||||
|
|
||||||
default:build_release
|
default:build_release
|
||||||
|
|
||||||
debug: tools build_debug
|
debug: build_debug
|
||||||
release: tools build_release
|
release: build_release
|
||||||
|
|
||||||
build_debug: B=$(BD)
|
build_debug: B=$(BD)
|
||||||
build_debug: makedirs
|
build_debug: makedirs tools
|
||||||
$(MAKE) targets B=$(BD) CFLAGS="$(CFLAGS) $(DEBUG_CFLAGS) $(DEPEND_CFLAGS)"
|
$(MAKE) targets B=$(BD) CFLAGS="$(CFLAGS) $(DEBUG_CFLAGS) $(DEPEND_CFLAGS)"
|
||||||
|
|
||||||
build_release: B=$(BR)
|
build_release: B=$(BR)
|
||||||
build_release: makedirs
|
build_release: makedirs tools
|
||||||
$(MAKE) targets B=$(BR) CFLAGS="$(CFLAGS) $(RELEASE_CFLAGS) $(DEPEND_CFLAGS)"
|
$(MAKE) targets B=$(BR) CFLAGS="$(CFLAGS) $(RELEASE_CFLAGS) $(DEPEND_CFLAGS)"
|
||||||
|
|
||||||
#Build both debug and release builds
|
#Build both debug and release builds
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue