From d1f78c88faafea7e672c7c45e20f6f040942a92a Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Wed, 3 Jun 2009 22:06:24 -0700 Subject: A bunch more work, a fast table for field lookup. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index eb2f10d..4d1efd7 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,16 @@ .PHONY: all clean CFLAGS=-std=c99 -O3 -Wall -Wextra -pedantic -OBJ=upb_parse.o upb_fieldmap.o upb_struct.o -all: $(OBJ) tests +OBJ=upb_parse.o upb_table.o upb_struct.o +all: $(OBJ) clean: rm -f $(OBJ) tests upb_parse.o: upb_parse.c upb_parse.h gcc $(CFLAGS) -o upb_parse.o -c upb_parse.c -upb_fieldmap.o: upb_fieldmap.c upb_fieldmap.h - gcc $(CFLAGS) -o upb_fieldmap.o -c upb_fieldmap.c +upb_table.o: upb_table.c upb_table.h + gcc $(CFLAGS) -o upb_table.o -c upb_table.c upb_struct.o: upb_struct.c upb_struct.h gcc $(CFLAGS) -o upb_struct.o -c upb_struct.c -- cgit v1.2.3