From 18838e644f1149db333c5ee441e025ba4b89283f Mon Sep 17 00:00:00 2001 From: Clemens Fries Date: Sat, 18 Jul 2015 23:33:23 +0200 Subject: Moved code and documentation from landfill to tidy repository. --- src/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..2c2cf5f --- /dev/null +++ b/src/Makefile @@ -0,0 +1,11 @@ +CC=gcc +CFLAGS=-Wall -Wextra -g +#CFLAGS=-g + +rastertoql570: ql570.h ql570.c rastertoql570.h rastertoql570.c + rm -f ../rastertoql570 + $(CC) $(CFLAGS) -lcups -lcupsimage ql570.c rastertoql570.c -o ../rastertoql570 + +minimal: ql570.h ql570.c examples/minimal.c + rm -f ../minimal + $(CC) $(CFLAGS) -lcups -lcupsimage ql570.c examples/minimal.c -o ../minimal -- cgit