You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
211 B
9 lines
211 B
#
|
|
# Makefile to strip-out debug code from ASP in fre builds
|
|
#
|
|
$(O)\inc_debug.asp: inc_debug.asp.src
|
|
cl /EP $(C_PREPROCESSOR_FLAGS) inc_debug.asp.src > $(O)\inc_debug.asp
|
|
|
|
clean:
|
|
del inc_debug.asp
|
|
|