Add shared library make target for C library

pull/13/head
Ben Kelly 7 years ago
parent 88cc1c05fd
commit a3dcc36dd4

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

Loading…
Cancel
Save