summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 4d910b25b115b9c0c77c391548c4c9dbf208621f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# cqrlogo - CGI QR-Code logo for web services

CC	:= gcc
CFLAGS	+= -O2 -Wall -Werror
CFLAGS	+= $(shell pkg-config --cflags --libs gdk-pixbuf-2.0) \
	   $(shell pkg-config --cflags --libs libqrencode)

all: cqrlogo.c
	$(CC) $(CFLAGS) -o cqrlogo cqrlogo.c

clean:
	/bin/rm -f *.o *~ cqrlogo