X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=base%2Ftroglodyte-Makefile;h=d84d43e3d5a32f18bcb33243c0af935eb1b4fb04;hb=fa11284b9469c1c79af7f8f129da934c1ebcf594;hp=cdcebde8de8c16a424f10b7c2d60dd2e4f3ebf37;hpb=bc152fdba00b88a09a1c263bc8ff8490099b7027;p=chiark-tcl.git diff --git a/base/troglodyte-Makefile b/base/troglodyte-Makefile index cdcebde..d84d43e 100644 --- a/base/troglodyte-Makefile +++ b/base/troglodyte-Makefile @@ -9,9 +9,6 @@ OBJS= tables.o \ bcmode.o \ misc.o \ algtables.o \ - serpent.o \ - sha1.o \ - md5.o \ crypto.o \ parse.o @@ -22,18 +19,26 @@ AUTO_HDRS= tables.h AUTO_SRCS= tables.c AUTOS= $(AUTO_HDRS) $(AUTO_SRCS) -TARGETS= hbytes.so +TARGETS= hbytes.so autocode.tcl autococo.tcl CC_CRYPTO= $(CC) $(CFLAGS) $(CPPFLAGS) -O3 +CPPFLAGS= -I../plocal/include $(TCL_MEM_DEBUG) $(CMDLINE_CPPFLAGS) +LDFLAGS= -L../plocal/lib +LDLIBS= -lnettle CFLAGS= -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Werror \ $(OPTIMISE) OPTIMISE= -O2 +TCL_MEM_DEBUG= -DTCL_MEM_DEBUG all: $(TARGETS) $(AUTOS) hbytes.so: $(OBJS) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ -shared $(OBJS) $(LDLIBS) +autoco%.tcl: deco%gen.tcl decobogen.tcl general.tcl ./hbytes.so \ + protocol.deco + ./$< protocol.deco >$@.new && mv -f $@.new $@ + %.c: %.tct tcmdifgen ./tcmdifgen -wc -o$@ $< @@ -43,14 +48,8 @@ hbytes.so: $(OBJS) %.o: %.c $(HDRS) $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $< -serpent.o: serpent.c serpent.h serpentsboxes.h - $(CC_CRYPTO) -o $@ -c $< - -md5.o: md5.c md5.h - $(CC_CRYPTO) -o $@ -c $< - -sha1.o: sha1.c sha1.h - $(CC_CRYPTO) -o $@ -c $< +#alg.o: alg.c alg.h alg2.h +# $(CC_CRYPTO) -o $@ -c $< clean: rm -f $(OBJS) $(TARGETS) *~ ./#*#