|
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: 1953 (0x7a1) Types: TextFile Names: »Makefile«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/Tools/tables/abbrev/Makefile«
# abbrev - extend domain table to include abbreviations # ############################################################ # # @(#) $Header: /cs/research/pp/hubris/pp-beta/Tools/tables/abbrev/RCS/Makefile,v 5.0 90/09/20 16:31:54 pp Exp Locker: pp $ # # $Log: Makefile,v $ # Revision 5.0 90/09/20 16:31:54 pp # rcsforce : 5.0 public release # # ############################################################ # # Definitions # ############################################################ SRCS = abbrev.c OBJS = abbrev.o # DO NOT DELETE THIS LINE MAKE DEFINE NEEDS IT HEADERS = ./ CFLAGS = $(CCOPTIONS) $(LCF) -I$(HEADERS) LDFLAGS = $(LDOPTIONS) $(LLF) LLFLAGS = $(LINTFLAGS) -I$(HEADERS) LINTLIBS = ############################################################ # # Building Rules # ############################################################ PROGS = xabbrev default: all progs: $(PROGS) all: $(PROGS) abbrev: $(PROGS) xabbrev: abbrev.o $(CC) $(LDFLAGS) abbrev.o -o $@ $(LIBSYS) install: inst-dir inst-abbrev inst-dir: $(TOOLDIR) inst-abbrev: $(TOOLDIR)/abbrev $(TOOLDIR)/abbrev: xabbrev -$(BACKUP) $@ zxabbrev rm -f $@ $(INSTALL) xabbrev $@ -$(CHMOD) $(PGMPROT) $@ -$(CHOWN) $(PPUSER) $@ -@ls -ls $@ -@echo "abbrev tool installed normally"; echo "" clean: tidy rm -f $(OBJS) tidy: rm -f *.old *.BAK *.OUT $(PROGS) zx* depend: $(DEPEND) -I$(HEADERS) $(SRCS) define: $(DEFINE) Makefile lint: l-abbrev l-abbrev: $(SRCS) $(LINT) $(LLFLAGS) $(SRCS) $(LINTLIBS) ############################################################ # # End of building rules # ############################################################ # DO NOT DELETE THIS LINE MAKE DEPEND NEEDS IT # Dependencies follow abbrev.o: abbrev.c abbrev.o: abbrev.c # DEPENDENCIES MUST END AT END OF FILE # IF YOU PUT STUFF HERE IT WILL GO AWAY # see make depend above