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

⟦8d18e6a78⟧ TextFile

    Length: 2256 (0x8d0)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦cc8755de2⟧ »./libg++-1.36.1.tar.Z« 
        └─⟦23757c458⟧ 
            └─⟦this⟧ »libg++/gperf/src/Makefile« 

TextFile

# Copyright (C) 1989 Free Software Foundation, Inc.
# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
# 
# This file is part of GNU GPERF.
# 
# GNU GPERF is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 1, or (at your option)
# any later version.
# 
# GNU GPERF is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with GNU GPERF; see the file COPYING.  If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 

GXX   = g++
DFLAGS= -g -Wall -DGATHER_STATISTICS
OFLAGS= -O -fdelayed-branch -fsave-memoized \
        -finline-functions -fstrength-reduce -felide-constructors
GFLAGS= $(DFLAGS) $(OFLAGS)
OBJS  = options.o iterator.o main.o gen-perf.o key-list.o list-node.o \
        hash-table.o bool-array.o read-line.o std-err.o version.o
LIBS  = -lg++
.SUFFIXES: .cc
.cc.o:
	$(GXX) $(GFLAGS) -c  $<

all: gperf

gperf: $(OBJS) 
	$(GXX) $(GFLAGS) -o gperf $(OBJS) $(LIBS)

clean: 
	-rm -f gperf *.o core *~ #*#

# dependencies
# DO NOT DELETE THIS LINE -- mkdep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.

bool-array.o : bool-array.cc options.h std-err.h bool-array.h 
hash-table.o : hash-table.cc hash-table.h list-node.h std-err.h \
  alpha-vectors.h options.h 
iterator.o : iterator.cc 
key-list.o : key-list.cc options.h std-err.h read-line.h hash-table.h \
  list-node.h alpha-vectors.h key-list.h 
list-node.o : list-node.cc options.h std-err.h list-node.h alpha-vectors.h 
main.o : main.cc std-err.h options.h gen-perf.h key-list.h list-node.h \
  alpha-vectors.h read-line.h bool-array.h 
options.o : options.cc options.h std-err.h iterator.h 
gen-perf.o : gen-perf.cc options.h std-err.h gen-perf.h key-list.h list-node.h \
  alpha-vectors.h read-line.h bool-array.h 
read-line.o : read-line.cc read-line.h 
std-err.o : std-err.cc std-err.h 
version.o : version.cc 

# IF YOU PUT ANYTHING HERE IT WILL GO AWAY