summaryrefslogtreecommitdiff
path: root/nmakefile
blob: 65c0a313bcbec23d686dfc136ecdda192ed0dc13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
_CCFLAGS = /I includes /I psxdev /I generic\include /I generic\lib\lua\include /I generic\lib\zlib\include /I msvc /I msvc\getopt /I msvc\regex
!IFDEF DEBUG
_LIBS = "MSVC\Baltisot - generic\Debug\Baltisot - generic.lib" "MSVC\PSX-Bundle - library\Debug\PSX-Bundle - library.lib" comdlg32.lib user32.lib
!ELSE
_LIBS = "MSVC\Baltisot - generic\Release\Baltisot - generic.lib" "MSVC\PSX-Bundle - library\Release\PSX-Bundle - library.lib" comdlg32.lib user32.lib
!ENDIF

!include MSVC\Tools\master.mak

#------------------------------------------------------------------

TARGETS = bgrep.exe cd-tool.exe crypto-search.exe lzss-main.exe luapatch.res luapatch.exe
SUBDIRS = 

all : $(TARGETS)
	for %i in ( $(SUBDIRS) ) do $(_MAKE_IN_DIR) %i all

clean :
	-del /Q $(TARGETS) *.ilk *.pdb *.obj
	for %i in ( $(SUBDIRS) ) do $(_MAKE_IN_DIR) %i clean