diff options
author | Leo Howell <leo@lwh.jp> | 2009-09-05 09:33:22 +0900 |
---|---|---|
committer | Leo Howell <leo@lwh.jp> | 2009-09-05 09:33:22 +0900 |
commit | ef01767c732629b7eff7d1601e76a1bac58f5bfd (patch) | |
tree | ac29871fd3c6f1bab8dc8e3c51e33292d5544a96 /lpg/libqr/Makefile | |
download | pdf-simple-sign-ef01767c732629b7eff7d1601e76a1bac58f5bfd.tar.gz pdf-simple-sign-ef01767c732629b7eff7d1601e76a1bac58f5bfd.tar.xz pdf-simple-sign-ef01767c732629b7eff7d1601e76a1bac58f5bfd.zip |
The story so far
Diffstat (limited to 'lpg/libqr/Makefile')
-rw-r--r-- | lpg/libqr/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lpg/libqr/Makefile b/lpg/libqr/Makefile new file mode 100644 index 0000000..e36b09f --- /dev/null +++ b/lpg/libqr/Makefile @@ -0,0 +1,25 @@ +OBJECTS := bitstream.o \ + code-common.o \ + code-create.o \ + code-parse.o \ + code-render.o \ + data-common.o \ + data-create.o \ + data-parse.o + +CFLAGS := -std=c89 -pedantic -I. -Wall +CFLAGS += -g +#CFLAGS += -O3 -DNDEBUG + +all : libqr test + +$(OBJECTS) : $(wildcard *.h qr/*.h) + +libqr : libqr.a($(OBJECTS)) + +test : libqr.a test.c + +.PHONY : clean +clean: + $(RM) qr/*~ *~ *.o *.a *.so test + |