diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-07 17:44:05 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-07 17:44:05 +0000 |
commit | e3ade598a14425712cdb28460f2d363e77443609 (patch) | |
tree | cf7752c005bfb80e2351ad20c9426c9a61515413 /code/unix | |
parent | d09ef1e94fcc1a46ebebac73c59d1b48d54347fd (diff) | |
download | ioquake3-aero-e3ade598a14425712cdb28460f2d363e77443609.tar.gz ioquake3-aero-e3ade598a14425712cdb28460f2d363e77443609.zip |
* Makefile target dependancy fix
git-svn-id: svn://svn.icculus.org/quake3/trunk@319 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix')
-rw-r--r-- | code/unix/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index aa10ad3..ff72f32 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -535,15 +535,15 @@ DO_WINDRES=$(WINDRES) -i $< -o $@ default:build_release -debug: tools build_debug -release: tools build_release +debug: build_debug +release: build_release build_debug: B=$(BD) -build_debug: makedirs +build_debug: makedirs tools $(MAKE) targets B=$(BD) CFLAGS="$(CFLAGS) $(DEBUG_CFLAGS) $(DEPEND_CFLAGS)" build_release: B=$(BR) -build_release: makedirs +build_release: makedirs tools $(MAKE) targets B=$(BR) CFLAGS="$(CFLAGS) $(RELEASE_CFLAGS) $(DEPEND_CFLAGS)" #Build both debug and release builds |