Reordered definition and added comment to C makefile.

This commit is contained in:
Project Nayuki 2017-07-21 18:55:02 -04:00
parent a3dcc36dd4
commit ea59bedc93
1 changed files with 4 additions and 3 deletions

View File

@ -61,13 +61,14 @@ all: $(MAINS)
clean:
rm -f -- $(MAINS) libqrcodegen.so
# Shared library
libqrcodegen.so: $(LIBSRC:=.c) $(LIBSRC:=.h)
$(CC) $(CFLAGS) -fPIC -shared -o $@ $<
# 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)