|
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: 1115 (0x45b) Types: TextFile Names: »Makefile«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦697af93db⟧ »EurOpenD3/network/snmp/mit-snmp.tar.Z« └─⟦57bbcbe75⟧ └─⟦this⟧ »./Makefile« └─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦925ee6880⟧ »EurOpenD3/network/snmp/mit-snmp.900225.tar.Z« └─⟦a4bfa469c⟧ └─⟦this⟧ »./Makefile«
# # $Header: Makefile,v 1.1 89/01/15 20:07:57 jrd Exp $ # Author: J. Davin # Copyright 1988, 1989, Massachusetts Institute of Technology # See permission and disclaimer notice in file "notice.h" # LIBS = snmp \ bsd TARGETS = $(LIBS) \ snmpget \ snmpset \ snmpnext \ snmptrap \ snmptrapd \ asntest \ avltest \ smptest \ snmpd \ doc CFLAGS = -O CDEFS = -DINLINE RCSCMD = CCARGS = 'CFLAGS=$(CFLAGS)' 'CDEFS=$(CDEFS)' all: @for i in $(TARGETS); \ do \ ( echo $$i ; cd $$i ; \ make $(MFLAGS) $(CCARGS) all ); \ done clean: @for i in $(TARGETS); \ do \ ( echo $$i ; cd $$i ; make $(MFLAGS) clean ); \ done lint: @for i in $(LIBS); \ do \ ( cd $$i ; \ make $(MFLAGS) 'CDEFS=$(CDEFS)' lintlib ); \ done @for i in $(TARGETS); \ do \ ( echo $$i ; cd $$i ; \ make $(MFLAGS) 'CDEFS=$(CDEFS)' lint ); \ done depend: @for i in $(TARGETS); \ do \ ( echo $$i ; cd $$i ; make $(MFLAGS) depend ); \ done rcs: @for i in $(TARGETS); \ do \ ( echo $$i ; cd $$i ; \ make $(MFLAGS) 'RCSCMD=$(RCSCMD)' rcs ); \ done