aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/Makefile
blob: e9783f6a7a32152150dbc374df8b6544b8b68d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
OBJECTS :=      bitstream.o     \
                code-common.o   \
                code-create.o   \
                code-layout.o   \
                code-parse.o    \
                code-render.o   \
                data-common.o   \
                data-create.o   \
                data-parse.o	\
                rs-encode.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