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.
21 lines
415 B
21 lines
415 B
#
|
|
# Common makefile include for this project
|
|
#
|
|
|
|
!include $(CCSHELL_DIR)\common.inc
|
|
|
|
C_DEFINES = $(C_DEFINES) \
|
|
-DMLUI_SUPPORT \
|
|
-DMLUI_MESSAGEBOX \
|
|
|
|
!if !defined(TARGET_WIN95)
|
|
USE_NEW_COMMCTRL=1
|
|
!endif
|
|
|
|
!if defined(USE_NEW_COMMCTRL)
|
|
C_DEFINES= $(C_DEFINES) -DUXCTRL_VERSION=0x0100
|
|
!endif
|
|
|
|
|
|
SOURCES_USED = $(SOURCES_USED) $(CCSHELL_DIR)\common.inc
|
|
|