diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-10 13:36:26 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-10 13:36:26 -0700 |
commit | 633a692225fcdad15ce84776a7a18d7d008d52b3 (patch) | |
tree | 83a0df655a279826b659f07057b011d05b949e1c /Makefile | |
parent | a70e7bab2b492f64455c74f2222b363f37dc8dfa (diff) |
Add hash table implementation from glsl2 project.
The preprocessor here is intended to become part of the glsl2 codebase
eventually anyway.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ override CFLAGS += -Wall -Wextra -Wwrite-strings -Wswitch-enum -Wno-unused -glcpp: glcpp.o glcpp-lex.o glcpp-parse.o +glcpp: glcpp.o glcpp-lex.o glcpp-parse.o hash_table.o %.c %.h: %.y bison --defines=$*.h --output=$*.c $^ |