Skip to content

Commit

Permalink
This commit was manufactured by cvs2svn to create tag 'INN-2_2_2'.
Browse files Browse the repository at this point in the history
  • Loading branch information
rra committed Dec 13, 1999
1 parent 3a62b81 commit 0d38614
Show file tree
Hide file tree
Showing 22 changed files with 17,509 additions and 0 deletions.
74 changes: 74 additions & 0 deletions scripts/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
## $Id$
##
## Files that can be handled by fixscript (and need to be so handled) need
## a rule to build them from the .in version, and then all files need an
## installation rule. Do the installation rules individually so as to
## avoid needless work if the files haven't changed. We also need lists
## of files to build and files to install for the all and install rules.

include ../Makefile.global

ALL = innmail innstat innwatch rc.news scanlogs simpleftp \
tally.control writelog

EXTRA = inncheck innreport innshellvars innshellvars.pl \
innshellvars.tcl news.daily

INSTALLED = $(D)$(PATHBIN)/inncheck \
$(D)$(PATHBIN)/innmail \
$(D)$(PATHBIN)/innreport \
$(D)$(PATHBIN)/innstat \
$(D)$(PATHBIN)/innwatch \
$(D)$(PATHBIN)/news.daily \
$(D)$(PATHBIN)/rc.news \
$(D)$(PATHBIN)/scanlogs \
$(D)$(PATHBIN)/simpleftp \
$(D)$(PATHBIN)/tally.control \
$(D)$(PATHBIN)/writelog \
$(D)$(PATHLIB)/innreport_inn.pm \
$(D)$(PATHLIB)/innshellvars \
$(D)$(PATHLIB)/innshellvars.pl \
$(D)$(PATHLIB)/innshellvars.tcl

all: $(ALL)

clean:
rm -f $(ALL)

clobber: clean
rm -f $(EXTRA)


## Build rules.

FIX = $(FIXSCRIPT)

innmail: innmail.in $(FIX) ; $(FIX) innmail.in
innstat: innstat.in $(FIX) ; $(FIX) innstat.in
innwatch: innwatch.in $(FIX) ; $(FIX) innwatch.in
rc.news: rc.news.in $(FIX) ; $(FIX) rc.news.in
scanlogs: scanlogs.in $(FIX) ; $(FIX) scanlogs.in
simpleftp: simpleftp.in $(FIX) ; $(FIX) simpleftp.in
tally.control: tally.control.in $(FIX) ; $(FIX) tally.control.in
writelog: writelog.in $(FIX) ; $(FIX) writelog.in


## Installation rules. Installation commands set in Makefile.global.

install: $(INSTALLED)

$(D)$(PATHBIN)/inncheck: inncheck ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/innmail: innmail ; $(CP_XPUB) $? $@
$(D)$(PATHBIN)/innreport: innreport ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/innstat: innstat ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/innwatch: innwatch ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/news.daily: news.daily ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/rc.news: rc.news ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/scanlogs: scanlogs ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/simpleftp: simpleftp ; $(CP_XPUB) $? $@
$(D)$(PATHBIN)/tally.control: tally.control ; $(CP_XPRI) $? $@
$(D)$(PATHBIN)/writelog: writelog ; $(CP_XPRI) $? $@
$(D)$(PATHLIB)/innreport_inn.pm: innreport_inn.pm ; $(CP_RPRI) $? $@
$(D)$(PATHLIB)/innshellvars: innshellvars ; $(CP_RPUB) $? $@
$(D)$(PATHLIB)/innshellvars.pl: innshellvars.pl ; $(CP_RPUB) $? $@
$(D)$(PATHLIB)/innshellvars.tcl: innshellvars.tcl ; $(CP_RPUB) $? $@
Loading

0 comments on commit 0d38614

Please sign in to comment.