mirror of https://github.com/lianthony/NT4.0
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.
37 lines
514 B
37 lines
514 B
#----------------------------------------------------------------------------
|
|
#
|
|
# Description:
|
|
#
|
|
# sources file for the security utility lib
|
|
#
|
|
# History:
|
|
#
|
|
# 1/12/95 created larrys
|
|
# 7/18/95 added ACT_BUILD ifdef philh
|
|
#
|
|
#----------------------------------------------------------------------------
|
|
|
|
|
|
MINORCOMP=cppapi
|
|
|
|
TARGETNAME=cppapi
|
|
!if "$(ACT_BUILD)" == "TRUE"
|
|
TARGETPATH=$(_OBJ_DIR)
|
|
!else
|
|
TARGETPATH=obj
|
|
!endif
|
|
TARGETTYPE=LIBRARY
|
|
|
|
|
|
LINKLIBS=\
|
|
$(CLIBS)
|
|
|
|
INCLUDES= ..\inc;
|
|
|
|
SOURCES= \
|
|
cppapi.c
|
|
|
|
|
|
|
|
|
|
|