added my Recipes
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
all: qrencode
|
||||
|
||||
CFLAGS += -Wall $(shell pkg-config --cflags libqrencode libpng)
|
||||
LDFLAGS += $(shell pkg-config --libs libqrencode libpng)
|
||||
|
||||
qrencode: qrenc.c
|
||||
$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)
|
||||
|
||||
clean: ; rm -rf *.o qrencode
|
||||
Reference in New Issue
Block a user