summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-06-03 22:06:24 -0700
committerJoshua Haberman <joshua@reverberate.org>2009-06-03 22:06:24 -0700
commitd1f78c88faafea7e672c7c45e20f6f040942a92a (patch)
tree67d6f959815b464a241d5c6b7c7df1a6755e4f55 /Makefile
parent0c80c384756a48d5f731eeafa62b6cd5f3861749 (diff)
A bunch more work, a fast table for field lookup.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
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
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback