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.
31 lines
556 B
31 lines
556 B
#
|
|
# include the .mk file at the root of the project. Then, don't use .. in
|
|
# any path. Instead, use MIGSHARED_ROOT.
|
|
#
|
|
|
|
!include ..\migshared.mk
|
|
|
|
#
|
|
# Continue with the normal script below
|
|
#
|
|
|
|
# general build settings
|
|
MAJORCOMP=migshared
|
|
MINORCOMP=commonpch
|
|
|
|
TARGETNAME=pcha
|
|
TARGETTYPE=LIBRARY
|
|
TARGETPATH=$(_OBJ_DIR)
|
|
|
|
USER_C_FLAGS=-J
|
|
|
|
# stub source
|
|
SOURCES=\
|
|
empty.c \
|
|
|
|
# precompiled header options
|
|
PRECOMPILED_OBJ=$(MIGSHARED_PRECOMPILED_OBJ)
|
|
PRECOMPILED_TARGET=$(MIGSHARED_PRECOMPILED_TARGET)
|
|
PRECOMPILED_INCLUDE=pch.h
|
|
|
|
|