summaryrefslogtreecommitdiff
path: root/nmakefile
blob: cd1831065d1acc92e5c79002c8bb8f481bdc6ae5 (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
!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