blob: a54bb3679257d85fbf64e9289b3fc33ca8196e28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
!ifdef SIMD
DEFS=$(DEFS) /DFLEXT_USE_SIMD
!endif
!ifdef SNDOBJ
SRCS=$(SRCS) $(SRCS_SNDOBJ)
HDRS=$(HDRS) $(HDRS_SNDOBJ)
INCPATH=$(INCPATH) /I$(SNDOBJ)\include
LIBS=$(LIBS) $(SNDOBJ)\lib\sndobj.lib
!endif
!ifdef STK
SRCS=$(SRCS) $(SRCS_STK)
HDRS=$(HDRS) $(HDRS_STK)
INCPATH=$(INCPATH) /I$(STK)\include
LIBS=$(LIBS) $(STK)\lib\stk.lib
!endif
|