summaryrefslogtreecommitdiffstats
path: root/Makefiles/.svn
diff options
context:
space:
mode:
Diffstat (limited to 'Makefiles/.svn')
-rw-r--r--Makefiles/.svn/README.txt2
-rw-r--r--Makefiles/.svn/empty-file0
-rw-r--r--Makefiles/.svn/entries34
-rw-r--r--Makefiles/.svn/format1
-rw-r--r--Makefiles/.svn/prop-base/build.svn-base1
-rw-r--r--Makefiles/.svn/prop-base/config.svn-base1
-rw-r--r--Makefiles/.svn/props/build.svn-work1
-rw-r--r--Makefiles/.svn/props/config.svn-work1
-rw-r--r--Makefiles/.svn/text-base/build.svn-base84
-rw-r--r--Makefiles/.svn/text-base/config.svn-base44
10 files changed, 0 insertions, 169 deletions
diff --git a/Makefiles/.svn/README.txt b/Makefiles/.svn/README.txt
deleted file mode 100644
index 271a8ce..0000000
--- a/Makefiles/.svn/README.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-This is a Subversion working copy administrative directory.
-Visit http://subversion.tigris.org/ for more information.
diff --git a/Makefiles/.svn/empty-file b/Makefiles/.svn/empty-file
deleted file mode 100644
index e69de29..0000000
--- a/Makefiles/.svn/empty-file
+++ /dev/null
diff --git a/Makefiles/.svn/entries b/Makefiles/.svn/entries
deleted file mode 100644
index 46786c3..0000000
--- a/Makefiles/.svn/entries
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<wc-entries
- xmlns="svn:">
-<entry
- committed-rev="1"
- name=""
- committed-date="2005-12-08T17:32:07.572093Z"
- url="svn+ssh://coleridge/svn/nastd/trunk/Makefiles"
- last-author="bjc"
- kind="dir"
- uuid="2641c99b-6c07-0410-920d-927397d2d5d0"
- revision="8"/>
-<entry
- committed-rev="1"
- name="build"
- text-time="2005-12-24T00:00:40.000000Z"
- committed-date="2005-12-08T17:32:07.572093Z"
- checksum="01035c5b5538c67671bde47d4f0fa2e8"
- last-author="bjc"
- kind="file"
- prop-time="2005-12-24T00:00:38.000000Z"/>
-<entry
- name="os"
- kind="dir"/>
-<entry
- committed-rev="1"
- name="config"
- text-time="2005-12-24T00:00:40.000000Z"
- committed-date="2005-12-08T17:32:07.572093Z"
- checksum="89fb3d48473f6edb3478d3534c5b0299"
- last-author="bjc"
- kind="file"
- prop-time="2005-12-24T00:00:40.000000Z"/>
-</wc-entries>
diff --git a/Makefiles/.svn/format b/Makefiles/.svn/format
deleted file mode 100644
index b8626c4..0000000
--- a/Makefiles/.svn/format
+++ /dev/null
@@ -1 +0,0 @@
-4
diff --git a/Makefiles/.svn/prop-base/build.svn-base b/Makefiles/.svn/prop-base/build.svn-base
deleted file mode 100644
index dce2c1d..0000000
--- a/Makefiles/.svn/prop-base/build.svn-base
+++ /dev/null
@@ -1 +0,0 @@
-END
diff --git a/Makefiles/.svn/prop-base/config.svn-base b/Makefiles/.svn/prop-base/config.svn-base
deleted file mode 100644
index dce2c1d..0000000
--- a/Makefiles/.svn/prop-base/config.svn-base
+++ /dev/null
@@ -1 +0,0 @@
-END
diff --git a/Makefiles/.svn/props/build.svn-work b/Makefiles/.svn/props/build.svn-work
deleted file mode 100644
index dce2c1d..0000000
--- a/Makefiles/.svn/props/build.svn-work
+++ /dev/null
@@ -1 +0,0 @@
-END
diff --git a/Makefiles/.svn/props/config.svn-work b/Makefiles/.svn/props/config.svn-work
deleted file mode 100644
index dce2c1d..0000000
--- a/Makefiles/.svn/props/config.svn-work
+++ /dev/null
@@ -1 +0,0 @@
-END
diff --git a/Makefiles/.svn/text-base/build.svn-base b/Makefiles/.svn/text-base/build.svn-base
deleted file mode 100644
index 61c6c64..0000000
--- a/Makefiles/.svn/text-base/build.svn-base
+++ /dev/null
@@ -1,84 +0,0 @@
-# $Id: build,v 1.22 2001/10/29 11:22:05 shmit Exp $
-#
-# Don't do configuration in this file! Edit Makefile.config instead.
-#
-
-CFLAGS= ${DEBUGFLAGS} ${PROFFLAGS} ${OSFLAGS} ${OPTFLAGS} \
- ${THREADFLAGS} ${PATH_DEFS} -I${TOPDIR}/include \
- ${OBJCINC} ${MYSQL_INCS} ${DB_DEFS} -D_REENTRANT \
- -D_THREAD_SAFE
-
-LIBS= ${OSLIBS} -lobjc
-
-# Path settings.
-PATH_DEFS= -DDATADIR=\"${DATADIR}\"
-
-# MySQL settings.
-MYSQL_LIBS= ${RPATH} ${MYSQL_LIBDIR} -L${MYSQL_LIBDIR} -lmysqlclient -lm
-MYSQL_INCS= -I${MYSQL_INCDIR}
-DB_DEFS= -DDBUSER=${DBUSER} -DDBPASS=${DBPASS} \
- -DDBHOST=${DBHOST} -DDBNAME=${DBNAME} \
- -DDBTBL=${DBTBL} -DDBSELECT=${DBSELECT}
-
-BINS= tests/getnast tests/updnast tests/statnast tests/killnast
-SBINS= server/nastd
-INCS= include/nastd.h
-ASSLIBS= client/libnast.a client/libnast_r.a
-
-.SUFFIXES: .c .m .o
-
-.PHONY: common libconfig server client tests perl
-
-all: server client tests perl
-
-install: all
- mkdir -p ${BINDIR} ${SBINDIR} ${INCDIR} ${LIBDIR} ${DATADIR}
- ${INSTALL} -c -m 755 ${BINS} ${BINDIR}
- ${INSTALL} -c -m 755 ${SBINS} ${SBINDIR}
- ${INSTALL} -c -m 644 ${INCS} ${INCDIR}
- ${INSTALL} -c -m 644 ${ASSLIBS} ${LIBDIR}
- @(cd perl && ./build ${MAKE} ${PERL} install)
-
-server: common libconfig
- @(echo "===> server" && cd server && ${MAKE})
-
-client: common
- @(echo "===> client" && cd client && ${MAKE})
-
-tests: common
- @(echo "===> tests" && cd tests && ${MAKE})
-
-common:
- @(echo "===> common" && cd common && ${MAKE})
-
-libconfig:
- @(echo "===> libconfig" && cd libconfig && ${MAKE})
-
-perl:
- @(echo "===> perl" && cd perl && ./build ${MAKE} ${PERL})
-
-clean:
- @(cd ${TOPDIR} && ${MAKE} realclean)
-
-realclean:
- rm -f common/*.o common/*.a client/*.o server/*.o
- rm -f tests/*.o tests/getnast
- rm -f perl/Makefile perl/NASTD.c perl/NASTD.bs perl/*.o
- rm -rf perl/blib
-
-.c.o:
- ${CC} ${CFLAGS} -c $<
-
-.m.o:
- ${CC} ${CFLAGS} -c $<
-
-.c.So:
- ${CC} ${CFLAGS} -fpic -DPIC -o $@ -c $<
-
-MKDIR?= Makefiles
-TOPDIR= ${MKDIR}/..
-MKLIB= ${TOPDIR}/tools/makelib
-MKMODLIST= ${TOPDIR}/tools/mkmodlist
-
-include ${MKDIR}/config
-include ${MKDIR}/os/target
diff --git a/Makefiles/.svn/text-base/config.svn-base b/Makefiles/.svn/text-base/config.svn-base
deleted file mode 100644
index 813b4ca..0000000
--- a/Makefiles/.svn/text-base/config.svn-base
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: config,v 1.24 2001/11/09 15:54:37 shmit Exp $
-#
-# Add -DSHADOW to OPTFLAGS if you want to use have shadow passwords.
-
-# Where to place things.
-#PREFIX= /opt
-PREFIX= /home/shmit
-BINDIR= ${PREFIX}/bin
-SBINDIR= ${PREFIX}/sbin
-DATADIR= ${PREFIX}/libdata/nast
-INCDIR= ${PREFIX}/include
-LIBDIR= ${PREFIX}/lib
-SRCDIR= .
-
-# Set this to NO if you don't want the perl library built.
-PERL= NO
-
-# Purify options
-#PURIFY= purify
-
-# MySQL library and include file location.
-MYSQL_INCDIR= /local/include
-MYSQL_LIBDIR= /local/lib
-
-# Generic Database configuration.
-DBUSER= \"root\"
-DBPASS= NULL
-#DBPASS= \"h4x0rZ,uhb0und!\"
-DBHOST= NULL
-#DBHOST= \"mysql.dev.rcn.net\"
-DBNAME= \"password\"
-DBTBL= \"master\"
-DBSELECT= "\"SELECT %s FROM %s WHERE %s='%s'"\"
-
-# Location of Objective C include files.
-OBJCINC= -I/local/include/objc
-
-# Debugging flags.
-DEBUGFLAGS= -g -DTEST -DVERBOSE -Wall -Werror
-#DEBUGFLAGS= -DTEST -DVERBOSE
-#PROFFLAGS= -pg
-
-# Optimization flags to the C compiler.
-#OPTFLAGS= -O