zint/frontend/Makefile

32 lines
681 B
Makefile
Raw Normal View History

2008-07-14 09:15:55 +12: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
#
ZINT_VERSION:=-DZINT_VERSION=\"1.80.0\"
2008-07-14 09:15:55 +12:00
CC := gcc
INCLUDE := -I/usr/local/include
2008-09-03 08:23:06 +12:00
CFLAGS := -g
prefix := /usr/local
bindir := $(prefix)/bin
DESTDIR :=
2008-07-14 09:15:55 +12:00
zint: main.c
$(CC) $(INCLUDE) $(CFLAGS) $(ZINT_VERSION) -I../backend -L../backend main.c -o zint_frontend -lzint
2008-07-14 09:15:55 +12:00
.PHONY: install uninstall clean dist
clean:
rm -f zint *.o *.a *~ *.png *.eps
install:
2008-09-03 08:23:06 +12:00
install -D -p zint $(DESTDIR)$(bindir)/zint
2008-07-14 09:15:55 +12:00
uninstall:
2008-09-03 08:23:06 +12:00
rm $(DESTDIR)$(bindir)/zint