1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
# Makefile for GNU ean13. -*- Indented-Text -*-
# Copyright (C) 1992, 1993 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#### Start of system configuration section. ####
VPATH = @srcdir@
srcdir = $(VPATH)
CC = @CC@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MAKEINFO = makeinfo
TEXI2DVI = texi2dvi
DEFS = @DEFS@
LIBS = @LIBS@
CFLAGS = -g
LDFLAGS = -g
prefix = /usr/local
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
#infodir = $(prefix)/info
docdir = /usr/doc/ean13
# Prefix to be prepended to each installed program, normally empty or `g'.
binprefix =
#### End of system configuration section. ####
SHELL = /bin/sh
SRCS = ean13.c
OBJS = ean13.o @ALLOCA@
DISTFILES = $(SRCS) COPYING ChangeLog Makefile.in \
README INSTALL \
configure configure.in \
ean13.include-1 ean13.include-2 ean13.include-3 \
version.c ean13.cgi ean.cgi \
mkinstalldirs copyright
all: ean13
.PHONY: all
#.PHONY: info dvi
#info: ean13.info
#dvi: ean13.dvi
.c.o:
$(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) $<
.PHONY: install installdirs
install: installdirs ean13 copyright
$(INSTALL_PROGRAM) ean13 $(bindir)/ean13
# $(INSTALL_PROGRAM) ean13 $(bindir)/$(binprefix)ean13
# $(INSTALL_PROGRAM) copyright /usr/doc/ean13/
# $(INSTALL_PROGRAM) COPYING /usr/doc/ean13/
# $(INSTALL_PROGRAM) ChangeLog /usr/doc/ean13/
# $(INSTALL_PROGRAM) README /usr/doc/ean13/
# $(INSTALL_PROGRAM) ean13.cgi /usr/doc/ean13/
# $(INSTALL_PROGRAM) ean.cgi /usr/doc/ean13/
installdirs:
${srcdir}/mkinstalldirs $(bindir) $(docdir)
ean13: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
ean13.o: ean13.include-1 ean13.include-2 ean13.include-3 version.c
#ean13.info: ean13.texi
# $(MAKEINFO) -I$(srcdir) -o ean13.info $(srcdir)/ean13.texi
#ean13.dvi: ean13.texi
# $(TEXI2DVI) $(srcdir)/ean13.texi
.PHONY: check
check: ean13
@echo expect no output from diff
Makefile: Makefile.in config.status
$(SHELL) config.status
config.status: configure
$(srcdir)/configure --no-create
TAGS: $(SRCS)
etags $(SRCS)
.PHONY: clean mostlyclean distclean realclean dist
clean:
rm -f ean13 *.o core test.out ean13.dvi
mostlyclean: clean
distclean: clean
rm -f Makefile config.status
realclean: distclean
rm -f ean13.info*
dist: $(DISTFILES)
echo ean13-`sed -e '/version/!d' -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q version.c` > .fname
rm -rf `cat .fname`
mkdir `cat .fname`
ln $(DISTFILES) `cat .fname`
tar chozf ../`cat .fname`.tar.gz `cat .fname`
rm -rf `cat .fname` .fname
# Prevent GNU make v3 from overflowing arg limit on SysV.
.NOEXPORT:
|