1 # c-examples/test-lib/makefile
3 # $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c-examples/test-lib/makefile,v 1.1.1.1 2001/05/18 23:14:07 mb Exp $
5 # Revision 1.1.1.1 2001/05/18 23:14:07 mb
6 # Move from private repository to open source repository
8 # Revision 1.1.1.1 1999/03/16 18:06:09 aram
9 # Originals from SMIME Free Library.
11 # Revision 1.4 1995/07/24 20:50:11 rj
12 # changed `_' to `-' in file names.
14 # Revision 1.3 1995/02/13 15:05:59 rj
15 # augment CPPFLAGS, not overwrite.
17 # Revision 1.2 1994/08/31 21:43:20 rj
18 # rebuild the executables when the c-lib is newer.
20 # Revision 1.1 1994/08/31 08:46:37 rj
21 # first check-in. for a list of changes to the snacc-1.1 distribution please refer to the ChangeLog.
24 include ../../makehead
28 ASN1_C_LIB_DIR = $(TOP)/c-lib
29 ASN1_C_INC_DIR = $(ASN1_C_LIB_DIR)/inc
30 ASN1_C_LIB = $(ASN1_C_LIB_DIR)/libasn1csbuf.a
32 CPPFLAGS += -I$(TOP) -I$(ASN1_C_INC_DIR) -DUSE_SBUF
34 LDLIBS = $(ASN1_C_LIB) $(LIBS)
44 #-------------------------------------------------------------------------------
51 test-lib: $(ASN1_C_LIB)
54 $(RM) *.o *~ .emacs* test-lib core
56 include ../../maketail