summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2016-08-28 00:37:50 -0400
committerPaul Duncan <pabs@pablotron.org>2016-08-28 00:37:50 -0400
commit0089842c454e51367a10dd86856cca8884bd2f01 (patch)
tree22837d11a1c7776f38b77ab487cbf2f759380e01 /Makefile
parent14b04c962ee670e459f3e829e701da7fe1e57048 (diff)
downloadlibfhp-0089842c454e51367a10dd86856cca8884bd2f01.tar.bz2
libfhp-0089842c454e51367a10dd86856cca8884bd2f01.zip
add internal.h and te-parser.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 32976d7..7878027 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CC ?= cc
CFLAGS=-std=c99 -W -Wall -pedantic -O2 -Iinclude -fPIC
-OBJS=fhp.o hash.o error.o token.o env.o
+OBJS=fhp.o hash.o error.o token.o env.o te-parser.o
SONAME=libfhp.so
LIB=libfhp.so
@@ -22,5 +22,5 @@ $(LIB): $(OBJS)
$(TEST_APP): $(LIB) $(TEST_OBJS)
$(CC) -o $(TEST_APP) $(TEST_OBJS) $(TEST_LDFLAGS)
-%.o: %.c include/fhp/fhp.h
+%.o: %.c internal.h include/fhp/fhp.h
$(CC) -c $(CFLAGS) $<