|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 2179 (0x883) Types: TextFile Names: »Makefile«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/h/Makefile«
############################################################################### # Instructions to Make, for compilation of ISODE header files ############################################################################### ############################################################################### # # $Header: /f/osi/h/RCS/Makefile,v 6.0 89/03/18 23:31:49 mrose Rel $ # # # $Log: Makefile,v $ # Revision 6.0 89/03/18 23:31:49 mrose # Release 5.0 # ############################################################################### ############################################################################### # # NOTICE # # Acquisition, use, and distribution of this module and related # materials are subject to the restrictions of a license agreement. # Consult the Preface in the User's Manual for the full terms of # this agreement. # ############################################################################### DIRS = quipu HEADERS = config.h \ sys.dirent.h usr.dirent.h \ general.h manifest.h internet.h isoaddrs.h x25.h cons.h \ tp4.h \ cmd_srch.h isoservent.h logger.h tailor.h \ tpkt.h tsap.h \ spkt.h ssap.h \ ppkt.h psap2.h psap.h \ acpkt.h acsap.h \ rtpkt.h rtsap.h \ ropkt.h rosap.h \ rosy.h FHEADERS= fpkt.h ftam.h ################################################################## # Here it is... ################################################################## all:; inst-all:; -mkdir $(INCDIRM) @for h in $(HEADERS); do $(MAKE) TARGET=$$h inst-target; done inst-ftam:; @for h in $(FHEADERS); do $(MAKE) TARGET=$$h inst-target; done inst-target: $(INCDIR)$(TARGET) $(INCDIR)$(TARGET): $(TARGET) -cp $@ z$(TARGET) sed -e 's%#include "\([^/]*\)"%#include "$(INCDIR)\1"%' \ < $(TARGET) | \ sed -e 's%#include "/usr/include/\(.*\)"%#include <\1>%' > $@ -@ls -gls $@ -@echo "" install: inst-all clean lint:; clean:; rm -f z* _* @for i in $(DIRS); \ do (echo "cd $$i; $(MAKE) clean"; \ cd $$i; $(MAKE) clean); \ done grind:; tgrind -lc $(HEADERS) @for i in $(DIRS); \ do (echo "cd $$i; $(MAKE) grind"; \ cd $$i; $(MAKE) grind); \ done