Changeset 120
- Timestamp:
- 05/16/05 15:58:42
- Files:
-
- openpgpsdk/trunk/configure (moved) (moved from openpgpsdk/trunk/src/configure)
- openpgpsdk/trunk/examples/packet-dump.c (moved) (moved from openpgpsdk/trunk/src/packet-dump.c)
- openpgpsdk/trunk/include/packet-decode.h (moved) (moved from openpgpsdk/trunk/src/packet-decode.h)
- openpgpsdk/trunk/include/packet-parse.h (moved) (moved from openpgpsdk/trunk/src/packet-parse.h)
- openpgpsdk/trunk/include/packet.h (moved) (moved from openpgpsdk/trunk/src/packet.h)
- openpgpsdk/trunk/include/types.h (moved) (moved from openpgpsdk/trunk/src/types.h)
- openpgpsdk/trunk/include/util.h (moved) (moved from openpgpsdk/trunk/src/util.h)
- openpgpsdk/trunk/src/Makefile.template (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/src/Makefile.template
r116 r120 3 3 CC=%CC% 4 4 5 CFLAGS=-Wall -Werror -g $(DM_FLAGS) %INCLUDES%5 CFLAGS=-Wall -Werror -g $(DM_FLAGS) -I../include %INCLUDES% 6 6 LDFLAGS=-g 7 7 LIBS=libops.a -lcrypto -lz $(DM_LIB) 8 8 9 all: Makefile .depend packet-dumpverify create-key9 all: Makefile .depend verify create-key 10 10 11 11 LIBOBJS = packet-parse.o util.o openssl_crypto.o accumulate.o build.o \ … … 15 15 libops.a: $(LIBOBJS) 16 16 ar rc libops.a $(LIBOBJS) 17 18 packet-dump: packet-dump.o libops.a19 $(CC) $(LDFLAGS) -o packet-dump packet-dump.o $(LIBS)20 17 21 18 verify: verify.o libops.a … … 39 36 $(CC) $(CFLAGS) -E -MM *.c > .depend 40 37 41 Makefile: Makefile.template configure38 Makefile: Makefile.template $(CONFIGURE) 42 39 echo Makefile is older than templates, rerun configure. 43 40 exit 1
