Merge pull request #17 from obreitwi/feature/libtoml.so

Add rules for libtoml.so to Makefile
This commit is contained in:
CK Tan 2019-06-24 09:31:04 -07:00 committed by GitHub
commit b701a09579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,7 @@
CC = gcc
CFILES = toml.c
CFLAGS = -std=c99 -Wall -Wextra
CFLAGS = -std=c99 -Wall -Wextra -fpic
# to compile for debug: make DEBUG=1
# to compile for no debug: make
ifdef DEBUG
@ -13,13 +13,17 @@ endif
EXEC = toml_json toml_cat
LIB = libtoml.a
LIB_SHARED = libtoml.so
all: $(LIB) $(EXEC)
all: $(LIB) $(LIB_SHARED) $(EXEC)
libtoml.a: toml.o
ar -rcs $@ $^
libtoml.so: toml.o
$(CC) -shared -o $@ $^
toml_json: toml_json.c $(LIB)
toml_cat: toml_cat.c $(LIB)
@ -29,7 +33,8 @@ prefix ?= /usr/local
install: all
install -d ${prefix}/include ${prefix}/lib
install toml.h ${prefix}/include
install libtoml.a ${prefix}/lib
install $(LIB) ${prefix}/lib
install $(LIB_SHARED) ${prefix}/lib
clean:
rm -f *.o $(EXEC) $(LIB)
rm -f *.o $(EXEC) $(LIB) $(LIB_SHARED)