comparison Makefile.gen @ 124:d5cfd29c87c4

Rename some conditional compilation directives.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 04 Oct 2012 05:37:26 +0300
parents d5d27f262227
children 67d2cba58a87
comparison
equal deleted inserted replaced
123:6f7356f3b91c 124:d5cfd29c87c4
37 37
38 38
39 ### 39 ###
40 ### Filesystem 40 ### Filesystem
41 ### 41 ###
42 ifeq ($(DMRES_PACKFS),yes) 42 ifeq ($(DM_USE_PACKFS),yes)
43 DM_CFLAGS += -DDMRES_PACKFS 43 DM_CFLAGS += -DDM_USE_PACKFS
44 DMLIB_OBJS += dmpack.o dmpackutil.o 44 DMLIB_OBJS += dmpack.o dmpackutil.o
45 DM_LDFLAGS += -lz 45 DM_LDFLAGS += -lz
46 ifeq ($(DM_BUILD_TOOLS),yes) 46 ifeq ($(DM_BUILD_TOOLS),yes)
47 BINARIES += packed 47 BINARIES += packed
48 endif 48 endif
49 endif 49 endif
50 50
51 ifeq ($(DMRES_STDIO),yes) 51 ifeq ($(DM_USE_STDIO),yes)
52 DM_CFLAGS += -DDMRES_STDIO 52 DM_CFLAGS += -DDM_USE_STDIO
53 endif 53 endif
54 54
55 55
56 ### 56 ###
57 ### Graphics support 57 ### Graphics support
154 #endif 154 #endif
155 155
156 156
157 ### Dependancies 157 ### Dependancies
158 ifeq ($(DM_BUILD_TOOLS),yes) 158 ifeq ($(DM_BUILD_TOOLS),yes)
159 ifeq ($(DMRES_STDIO),yes) 159 ifeq ($(DM_USE_STDIO),yes)
160 ifeq ($(SUP_MODLOAD),yes) 160 ifeq ($(SUP_MODLOAD),yes)
161 BINARIES+= viewmod mod2wav testpl ppl 161 BINARIES+= viewmod mod2wav testpl ppl
162 endif 162 endif
163 163
164 ifeq ($(JSS_SUP_JSSMOD),yes) 164 ifeq ($(JSS_SUP_JSSMOD),yes)