Deleted Added
sdiff udiff text old ( 58551 ) new ( 67064 )
full compact
1# Makefile for gperf/src
2
3# Copyright (C) 1989, 1992, 1993, 1998 Free Software Foundation, Inc.
4# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
5#
6# This file is part of GNU GPERF.
7#
8# GNU GPERF is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 1, or (at your option)
11# any later version.

--- 22 unchanged lines hidden (view full) ---

34# C compiler
35CC = @CC@
36CFLAGS = @CFLAGS@
37CPP = @CPP@
38# C++ compiler
39CXX = @CXX@
40CXXFLAGS = @CXXFLAGS@
41CXXCPP = @CXXCPP@
42# Other
43MV = mv
44LN = ln
45RM = rm -f
46@SET_MAKE@
47
48# Programs used by "make install":
49INSTALL = @INSTALL@
50INSTALL_PROGRAM = @INSTALL_PROGRAM@
51INSTALL_DATA = @INSTALL_DATA@
52
53#### End of system configuration section. ####
54
55SHELL = /bin/sh
56
57VPATH = $(srcdir)
58
59OBJECTS = new.o options.o iterator.o main.o gen-perf.o key-list.o list-node.o \

--- 54 unchanged lines hidden (view full) ---

114trace.o : trace.cc $(TRACE_H)
115 $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(srcdir)/trace.cc
116vectors.o : vectors.cc $(VECTORS_H)
117 $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(srcdir)/vectors.cc
118version.o : version.cc $(VERSION_H)
119 $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(srcdir)/version.cc
120
121install : all force
122 if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
123 $(INSTALL_PROGRAM) $(TARGETPROG) $(bindir)/$(TARGETPROG)
124
125installdirs : force
126 if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
127
128uninstall : force
129 $(RM) $(bindir)/$(TARGETPROG)
130
131check : all
132
133mostlyclean : clean
134
135clean : force
136 $(RM) *~ *.s *.o *.a $(TARGETPROG) core
137
138distclean : clean
139 $(RM) config.status config.log config.cache Makefile config.h
140
141maintainer-clean : distclean
142
143force :