diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Makefile | 8 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,4 @@ /*.o +/*.a /fhp-test -/libfhp.so +/*.so @@ -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) |