zint/frontend/Makefile

32 lines
689 B
Makefile
Raw Normal View History

2008-07-13 21:15:55 +00:00
# Linux makefile for zint - requires libzint
#
# make compiles zint
# make install copies binary to /usr/local/bin
# make uninstall removes the binary
# make clean cleans up a previous compilation and any object or editor files
#
2009-06-19 18:28:38 +00:00
ZINT_VERSION:=-DZINT_VERSION=\"2.1.4\"
2008-07-13 21:15:55 +00:00
CC := gcc
INCLUDE := -I/usr/local/include
2008-09-02 20:23:06 +00:00
CFLAGS := -g
prefix := /usr/local
bindir := $(prefix)/bin
DESTDIR :=
2008-07-13 21:15:55 +00:00
zint: main.c
2008-09-28 11:19:33 +00:00
$(CC) -Wall $(INCLUDE) $(CFLAGS) $(ZINT_VERSION) -I../backend -L../backend main.c -o zint -lzint
2008-07-13 21:15:55 +00:00
.PHONY: install uninstall clean dist
clean:
2009-02-21 23:20:41 +00:00
rm -f zint *.o *.a *~ *.png *.eps *.svg *.log
2008-07-13 21:15:55 +00:00
install:
2008-09-02 20:23:06 +00:00
install -D -p zint $(DESTDIR)$(bindir)/zint
2008-07-13 21:15:55 +00:00
uninstall:
2008-09-02 20:23:06 +00:00
rm $(DESTDIR)$(bindir)/zint