17 lines
573 B
Plaintext
17 lines
573 B
Plaintext
!include $(NTMAKEENV)\makefile.plt
|
|
|
|
# Need to create the directory where generated headers that are
|
|
# visible to all of the Net project will live. MIDL won't do this
|
|
# automatically and neither will build.exe.
|
|
#
|
|
GENERATED_INC_DIR=$(PROJECT_ROOT)\inc\$(_OBJ_DIR)\$(TARGET_DIRECTORY)
|
|
GENERATED_LIB_DIR=$(PROJECT_ROOT)\lib\$(_OBJ_DIR)\$(TARGET_DIRECTORY)
|
|
|
|
all:
|
|
if not exist $(GENERATED_INC_DIR) md $(GENERATED_INC_DIR)
|
|
if not exist $(GENERATED_LIB_DIR) md $(GENERATED_LIB_DIR)
|
|
|
|
# empty target to prevent nmake from saying "don't know how to make 'clean'"
|
|
clean:
|
|
|