Initial transfer from CVS

Transfer of version 2.3.2 from CVS repository
This commit is contained in:
Robin Stuart
2010-06-10 21:52:50 +01:00
commit 511fadef30
152 changed files with 58999 additions and 0 deletions

31
frontend/Makefile Normal file
View File

@ -0,0 +1,31 @@
# 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=\"2.3.2\"
CC := gcc
INCLUDE := -I/usr/include
CFLAGS := -g
prefix := /usr
bindir := $(prefix)/bin
DESTDIR :=
zint: main.c
$(CC) -Wall $(INCLUDE) $(CFLAGS) $(ZINT_VERSION) -I../backend -L../backend main.c -o zint -lzint
.PHONY: install uninstall clean dist
clean:
rm -f zint *.o *.a *~ *.png *.eps *.svg *.log
install:
install -D -p zint $(DESTDIR)$(bindir)/zint
uninstall:
rm $(DESTDIR)$(bindir)/zint