Add shared library make target for C library

This commit is contained in:
Ben Kelly 2017-07-21 12:22:17 +03:00
parent 88cc1c05fd
commit a3dcc36dd4
1 changed files with 4 additions and 1 deletions

View File

@ -59,12 +59,15 @@ all: $(MAINS)
# Delete build output # Delete build output
clean: clean:
rm -f -- $(MAINS) rm -f -- $(MAINS) libqrcodegen.so
# Executable files # Executable files
%: %.c $(LIBSRC:=.c) $(LIBSRC:=.h) %: %.c $(LIBSRC:=.c) $(LIBSRC:=.h)
$(CC) $(CFLAGS) -o $@ $< $(LIBSRC:=.c) $(CC) $(CFLAGS) -o $@ $< $(LIBSRC:=.c)
libqrcodegen.so: $(LIBSRC:=.c) $(LIBSRC:=.h)
$(CC) $(CFLAGS) -fPIC -shared -o $@ $<
# Special executable # Special executable
qrcodegen-test: qrcodegen-test.c $(LIBSRC:=.c) $(LIBSRC:=.h) qrcodegen-test: qrcodegen-test.c $(LIBSRC:=.c) $(LIBSRC:=.h)
$(CC) $(CFLAGS) -DQRCODEGEN_TEST -o $@ $< $(LIBSRC:=.c) $(CC) $(CFLAGS) -DQRCODEGEN_TEST -o $@ $< $(LIBSRC:=.c)