summaryrefslogtreecommitdiff
path: root/license
diff options
context:
space:
mode:
Diffstat (limited to 'license')
-rw-r--r--license/.cvsignore1
-rw-r--r--license/Makefile47
-rw-r--r--license/license.class8
3 files changed, 0 insertions, 56 deletions
diff --git a/license/.cvsignore b/license/.cvsignore
deleted file mode 100644
index a5abf2f..0000000
--- a/license/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-license.slib
diff --git a/license/Makefile b/license/Makefile
deleted file mode 100644
index 0aa63bd..0000000
--- a/license/Makefile
+++ /dev/null
@@ -1,47 +0,0 @@
-##
-## $Id$
-##
-## Makefile for itools/license.lib
-##
-## $Log$
-## Revision 1.1 2000/07/13 19:10:19 weber
-## Added licensing suite
-##
-
-CPP= cpp
-QUIETMAKE= $(MAKE) -s
-PHPCOMPILE= /usr/local/bin/phpcompile
-
-MODULE= license
-SUBDIRS=
-CLASSES= license.class
-
-#
-# Library creation rules, do not change stuff below...
-#
-SLIB= $(MODULE).slib
-LIB= ../$(MODULE).lib
-
-all: $(LIB)
-
-$(LIB): $(SLIB)
- @if [ -x $(PHPCOMPILE) ]; then (echo Compiling $(SLIB) to $(LIB) ...) 1>&2; $(PHPCOMPILE) <$(SLIB) >$(LIB); else (echo $(PHPCOMPILE) not found, copying $(SLIB) to $(LIB) ...) 1>&2; cp $(SLIB) $(LIB); fi
-
-$(SLIB): $(CLASSES) DUMMY
- @(echo Creating $(SLIB) from $(SUBDIRS) $(CLASSES) ...) 1>&2
- @echo "<?php" >$(SLIB)
- @(for dir in DUMMY $(SUBDIRS); do (test -d $$dir && cd $$dir && $(QUIETMAKE) cat); done; for class in DUMMY $(CLASSES); do test -f $$class && cat $$class; done) | $(CPP) -P -undef | perl -ne 's/^\s+//g; print unless /^\s*$$/' | grep -v "^<?php" | grep -v "^?>" >>$(SLIB)
- @echo "?>" >>$(SLIB)
-
-$(SUBDIRS)::
- @(cd $@; $(QUIETMAKE))
-
-DUMMY:
-
-cat: $(SLIB)
- @cat $(SLIB)
-
-clean:
- @(echo Cleaning $(SLIB) $(LIB) ...) 1>&2
- @rm -f $(SLIB) $(LIB)
- @for dir in DUMMY $(SUBDIRS); do (test -d $$dir && cd $$dir && $(QUIETMAKE) $@) || :; done
diff --git a/license/license.class b/license/license.class
index 83a71a5..c915c3a 100644
--- a/license/license.class
+++ b/license/license.class
@@ -5,14 +5,6 @@
** Relog Internet Tools 3 Library ("ITOOLS3")
**
** it_license.class - Handle software licensing
-**
-** $Log$
-** Revision 1.2 2000/07/13 19:16:29 daenzer
-** cosmetic changes
-**
-** Revision 1.1 2000/07/13 19:10:19 weber
-** Added licensing suite
-**
*/
/**