DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦1713d6ebc⟧ TextFile

    Length: 1638 (0x666)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦e83f91978⟧ »EurOpenD22/isode/osimis-2.0.tar.Z« 
        └─⟦d846658bd⟧ 
            └─⟦this⟧ »osimis/Makefile« 

TextFile

#
# Copyright (c) 1988 University College London
# All rights reserved.
#
# Redistribution and use in source and binary forms are permitted
# provided that the above copyright notice and this paragraph are
# duplicated in all such forms and that any documentation,
# advertising materials, and other materials related to such
# distribution and use acknowledge that the software was developed
# by the Department of Computer Science, University College London.
# The name of the University may not be used to
# endorse or promote products derived from this software without
# specific prior written permission.
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#

# Makefile for OSI Management Information Services
#
# By George Pavlou, October 1988

DIRS	=	msap sma smap


all:;		@for i in $(DIRS); \
		    do (echo "cd $$i; make all"; \
			      cd $$i; make all); \
		    done

install:;	@for i in $(DIRS); \
		    do (echo "cd $$i; make install"; \
			      cd $$i; make install); \
		    done

clean:;		@for i in $(DIRS); \
		    do (echo "cd $$i; make clean"; \
			      cd $$i; make clean); \
		    done

tar:;		@(cd ..; \
		echo "tar -cvf osimis-2.0.tar -I I-tar \
		-I msap/I-tar -I sma/I-tar -I smap/I-tar \
		-I misode/I-tar -I misode/tsap/I-tar -I misode/imisc/I-tar"; \
		tar -cvf osimis/osimis-2.0.tar -I osimis/I-tar \
		-I osimis/msap/I-tar -I osimis/sma/I-tar \
		-I osimis/smap/I-tar -I osimis/misode/I-tar \
		-I osimis/misode/tsap/I-tar -I osimis/misode/imisc/I-tar )