summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7878027..c76e497 100644
--- a/Makefile
+++ b/Makefile
@@ -3,22 +3,26 @@ CFLAGS=-std=c99 -W -Wall -pedantic -O2 -Iinclude -fPIC
OBJS=fhp.o hash.o error.o token.o env.o te-parser.o
SONAME=libfhp.so
LIB=libfhp.so
+STATIC_LIB=libfhp.a
TEST_OBJS=test.o
TEST_APP=./fhp-test
TEST_LDFLAGS=-lfhp -L.
-all: $(LIB)
+all: $(LIB) $(STATIC_LIB)
test: $(TEST_APP)
LD_LIBRARY_PATH=. $(TEST_APP)
clean:
- rm -f $(LIB) $(OBJS) $(TEST_APP) $(TEST_OBJS)
+ rm -f $(LIB) $(STATIC_LIB) $(OBJS) $(TEST_APP) $(TEST_OBJS)
$(LIB): $(OBJS)
$(CC) -o $(LIB) -shared -Wl,-soname,$(SONAME) $(OBJS)
+$(STATIC_LIB): $(OBJS)
+ ar r $(STATIC_LIB) $(OBJS)
+
$(TEST_APP): $(LIB) $(TEST_OBJS)
$(CC) -o $(TEST_APP) $(TEST_OBJS) $(TEST_LDFLAGS)