Skip to content

Commit

Permalink
see ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
dancy committed Jan 14, 2004
1 parent 2956d2a commit 83e5e22
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
*** Don't forget to consider incrementing the version number in ftpd.cl
*** [and leave this message at the top of the file]

2004-01-14 root <root@gills.dancysoft.com>
<no version change>

* makefile: Updated mlisp variable for use offsite. Fixed install
rule.

2004-01-14 Ahmon Dancy <dancy@dancy>
1.0.23

Expand Down
14 changes: 9 additions & 5 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@
# (http://opensource.franz.com/preamble.html),
# known as the LLGPL.
#
# $Id: makefile,v 1.20 2004/01/14 20:04:13 dancy Exp $
# $Id: makefile,v 1.21 2004/01/14 20:41:48 dancy Exp $
#
# This makefile requires GNU make.

platform = $(shell uname -s)

ifeq ($(platform),Linux)
mlisp = /fi/cl/6.2/bin/redhat6/mlisp
mlisp = $(shell if test -x /storage1/acl/mlisp; then \
echo /storage1/acl/mlisp; \
else \
echo /fi/cl/6.2/bin/redhat6/mlisp; \
fi)
else
mlisp = /fi/cl/6.2/bin/solaris/mlisp
endif
Expand Down Expand Up @@ -63,9 +67,9 @@ install-common: FORCE
rm -fr $(INSTALLDIR)/aftpd
mkdir -p $(INSTALLDIR)
cp -pr aftpd $(INSTALLDIR)
cp -p readme.txt $(INSTALLDIR)
cp -p config.cl $(INSTALLDIR)
cp -p binary-license.txt $(INSTALLDIR)
cp -p readme.txt $(INSTALLDIR)/aftpd
cp -p config.cl $(INSTALLDIR)/aftpd
cp -p binary-license.txt $(INSTALLDIR)/aftpd

ifeq ($(platform),Linux)
install: install-common
Expand Down

0 comments on commit 83e5e22

Please sign in to comment.