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

⟦d6cacb672⟧ TextFile

    Length: 1736 (0x6c8)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦df1e72981⟧ »./indent-1.1.tar.Z« 
        └─⟦d08ad2b83⟧ 
            └─⟦this⟧ »dist-indent/Makefile« 

TextFile

#
# Copyright (c) 1987 Regents of the University of California.
# 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 University of California, Berkeley.  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	5.9 (Berkeley) 9/15/88
#
CFLAGS=	-O
SRCS=	indent.c io.c lexi.c parse.c pr_comment.c args.c globs.c
OBJS=	indent.o io.o lexi.o parse.o pr_comment.o args.o globs.o
HEADERS= indent_globs.h version.h
MAN=	indent.texinfo ChangeLog Projects
TARFILES= ${SRCS} Makefile ${MAN} ${HEADERS} indent.gperf
# -g is here rather than in CFLAGS since many versions of cc do not
# allow -g with -O
CC=gcc -g

all: indent

indent: ${OBJS}
	${CC} -o $@ ${CFLAGS} ${OBJS}

indent.tar.Z: ${TARFILES}
	rm -f indent.tar.Z
	mkdir dist-indent
	cd dist-indent ; for i in ${TARFILES} ; do ln -s ../$$i . ; done
# Note: requires GNU tar
	tar -c -h -z -f indent.tar.Z dist-indent
	rm -rf dist-indent

${OBJS}: indent_globs.h
args.o: version.h

clean:
	rm -f ${OBJS} core indent

cleandir: clean
	rm -f ${MAN} tags .depend

depend: ${SRCS}
	mkdep ${CFLAGS} ${SRCS}

lint: ${SRCS}
	lint ${CFLAGS} ${SRCS}

tags: ${SRCS}
	ctags ${SRCS} ${HEADERS}