source: sbliveos2/trunk/include/sblive32.mk@ 174

Last change on this file since 174 was 174, checked in by sandervl, 24 years ago

makefile updates

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 691 bytes
Line 
1#
2# Target directories.
3# Both bin and lib directories are compiler dependent.
4#
5!if "$(KEE)" == "1"
6DIREXT = KEE
7!else
8DIREXT = W4
9!endif
10
11!ifndef SBLIVE_BIN
12! if "$(DEBUG)" == "1"
13SBLIVE_BIN = $(SBLIVE_BIN_)\Debug
14SBLIVE_BIN__= $(SBLIVE_BIN_)\Debug
15! else
16SBLIVE_BIN = $(SBLIVE_BIN_)\Release
17SBLIVE_BIN__= $(SBLIVE_BIN_)\Release
18! endif
19!endif
20
21!ifndef SBLIVE_LIB
22! if "$(DEBUG)" == "1"
23SBLIVE_LIB = $(SBLIVE_LIB_)\Debug
24SBLIVE_LIB__= $(SBLIVE_LIB_)\Debug
25! else
26SBLIVE_LIB = $(SBLIVE_LIB_)\Release
27SBLIVE_LIB__= $(SBLIVE_LIB_)\Release
28! endif
29!endif
30
31!ifndef OBJDIR
32! if "$(DEBUG)" == "1"
33OBJDIR = bin\Debug$(DIREXT)
34! else
35OBJDIR = bin\Release$(DIREXT)
36! endif
37!endif
Note: See TracBrowser for help on using the repository browser.