From fef86b0202a3d4ef191926fee683eb92e9218bd4 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 29 Mar 2024 17:25:56 -0700 Subject: map: Use simpler fnv-1a hash function --- Makefile | 2 -- 1 file changed, 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d52da1b..7a82c80 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,6 @@ SRC=\ pp.c\ scan.c\ scope.c\ - siphash.c\ stmt.c\ targ.c\ token.c\ @@ -59,7 +58,6 @@ $(objdir)/pp.o : pp.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) $(objdir)/qbe.o : qbe.c util.h cc.h ops.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ qbe.c $(objdir)/scan.o : scan.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ scan.c $(objdir)/scope.o : scope.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ scope.c -$(objdir)/siphash.o : siphash.c $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ siphash.c $(objdir)/stmt.o : stmt.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ stmt.c $(objdir)/targ.o : targ.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ targ.c $(objdir)/token.o : token.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ token.c -- cgit v1.2.3