From ef01767c732629b7eff7d1601e76a1bac58f5bfd Mon Sep 17 00:00:00 2001 From: Leo Howell Date: Sat, 5 Sep 2009 09:33:22 +0900 Subject: The story so far --- lpg/libqr/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lpg/libqr/Makefile (limited to 'lpg/libqr/Makefile') 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 + -- cgit v1.2.3-70-g09d2