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

⟦e64a7f76e⟧ TextFile

    Length: 2775 (0xad7)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/Tools/ckconfig/Makefile« 

TextFile

# ckconfig: management program to check the configuration of the PP system.
#
############################################################
#
# @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/ckconfig/RCS/Makefile,v 5.0 90/09/20 16:25:07 pp Exp Locker: pp $
#
# $Log:	Makefile,v $
# Revision 5.0  90/09/20  16:25:07  pp
# rcsforce : 5.0 public release
# 
#
############################################################
#
# Definitions
#
############################################################



SRCS =  ckconfig.c 
OBJS =  ckconfig.o
# DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT

HEADERS =       ../../h
LIBPP   = ../../Lib/libpp.a

CFLAGS  = $(CCOPTIONS) $(LCF) -I$(HEADERS)
LDFLAGS = $(LDOPTIONS) $(LLF)
MAKE    = ./make
LLFLAGS = $(LINTFLAGS) -I$(HEADERS)
LINTLIBS = ../../Lib/llib-lpp.ln $(LINTISODE)

PROGS = xckconfig

############################################################
#
# Building Rules
#
############################################################

default: $(PROGS)

############################################################
#
# CheckConfig
#
############################################################
ckconfig: xckconfig
xckconfig: $(OBJS) $(LIBPP)
	    rm -f $@
	    $(CC) $(LDFLAGS) -o $@ $(OBJS) \
		  $(LIBPP) $(LIBSYS) 

############################################################
#
# Misc stuff
#
############################################################


install: inst-dir inst-ckconfig
inst-ckconfig: $(CMDDIR)/ckconfig
$(CMDDIR)/ckconfig: xckconfig
	-$(BACKUP) $@ zxckconfig
	rm -f $@
	$(INSTALL) xckconfig $@
	-$(CHMOD) $(PGMPROT) $@
	-$(CHOWN) $(PPUSER) $@
	-@ls -ls $@
	-@echo "ckconfig tool installed normally"; echo ""

inst-dir: $(TOOLDIR)


clean: tidy
	rm -f $(PROGS)
tidy:
	rm -f $(OBJS) core a.out *.old *.BAK zxckconfig

lint: l-ckconfig

l-ckconfig: $(SRCS) true
	$(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS)

true:;

depend:
	$(DEPEND) -I$(HEADERS) $(SRCS)

define:
	$(DEFINE) Makefile


############################################################
#
# End of Building Rules
#
############################################################

# DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT
# Dependencies follow
ckconfig.o: ckconfig.c
ckconfig.o: ../../h/util.h
ckconfig.o: ../../h/config.h
ckconfig.o: ../../h/ll_log.h
ckconfig.o: ../../h/chan.h
ckconfig.o: ../../h/table.h
ckconfig.o: ../../h/list_bpt.h
ckconfig.o: ../../h/table.h
ckconfig.o: ../../h/list_bpt.h
ckconfig.o: ckconfig.c
ckconfig.o: ../../h/util.h
ckconfig.o: ../../h/config.h
ckconfig.o: ../../h/ll_log.h
ckconfig.o: ../../h/chan.h
ckconfig.o: ../../h/table.h
ckconfig.o: ../../h/list_bpt.h
ckconfig.o: ../../h/table.h
ckconfig.o: ../../h/list_bpt.h

# DEPENDENCIES MUST END AT END OF FILE
# IF YOU PUT STUFF HERE IT WILL GO AWAY
# see make depend above