Deleted Added
full compact
Makefile.in (58551) Makefile.in (67064)
1# Makefile for gperf/src
2
1# Makefile for gperf/src
2
3# Copyright (C) 1989, 1992, 1993, 1998 Free Software Foundation, Inc.
3# Copyright (C) 1989, 1992, 1993, 1998, 2000 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@
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# Both C and C++ compiler
43LDFLAGS = @LDFLAGS@
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@
44# Other
45MV = mv
46LN = ln
47RM = rm -f
48@SET_MAKE@
49
50# Programs used by "make install":
51INSTALL = @INSTALL@
52INSTALL_PROGRAM = @INSTALL_PROGRAM@
53INSTALL_DATA = @INSTALL_DATA@
54MKINSTALLDIRS = $(SHELL) $(srcdir)/../mkinstalldirs
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
55
56#### End of system configuration section. ####
57
58SHELL = /bin/sh
59
60VPATH = $(srcdir)
61
62OBJECTS = new.o options.o iterator.o main.o gen-perf.o key-list.o list-node.o \

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

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