1# Generated automatically from Makefile.in by configure.
2#Copyright 1999 Free Software Foundation, Inc.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18prefix = /usr/local
19exec_prefix = ${prefix}
20
21host_alias = i686-pc-linux-gnu
22target_alias = i686-pc-linux-gnu
23program_transform_name = s,y,y,
24bindir = $(exec_prefix)/bin
25libdir = $(exec_prefix)/lib
26tooldir = $(libdir)/$(target_alias)
27
28datadir = $(prefix)/share
29mandir = $(prefix)/man
30man1dir = $(mandir)/man1
31man2dir = $(mandir)/man2
32man3dir = $(mandir)/man3
33man4dir = $(mandir)/man4
34man5dir = $(mandir)/man5
35man6dir = $(mandir)/man6
36man7dir = $(mandir)/man7
37man8dir = $(mandir)/man8
38man9dir = $(mandir)/man9
39infodir = $(prefix)/info
40includedir = $(prefix)/include
41
42SHELL = /bin/sh
43
44INSTALL = /usr/bin/install -c
45INSTALL_PROGRAM = /usr/bin/install -c
46INSTALL_DATA = /usr/bin/install -c -m 644
47
48CC=gcc
49EXEEXT =
50
51# Directory containing source files.
52srcdir = .././wince
53VPATH = .././wince
54
55# Where is the "-liberty" library?  Typically in ../libiberty.
56LIBIBERTY = ../../libiberty/libiberty.a
57
58# All the includes used for CFLAGS and for lint.
59# -I. for config files.
60# -I${srcdir} possibly for regex.h also.
61INCLUDE_CFLAGS = -I. -I${srcdir} -I$(srcdir)/../../include
62
63# CFLAGS is specifically reserved for setting from the command line
64# when running make.  I.E.  "make USER_CFLAGS=-Wmissing-prototypes".
65CFLAGS = -g
66
67# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
68INTERNAL_CFLAGS = $(CFLAGS) $(INCLUDE_CFLAGS) $(USER_CFLAGS)
69# None of the things in CFLAGS will do any harm, and on some systems
70#  (e.g. SunOS4) it is important to use the MH_CFLAGS.
71LDFLAGS = $(CFLAGS)
72
73# Libraries and corresponding dependencies for compiling gdb.
74CLIBS = ${LIBIBERTY}
75CDEPS = ${LIBIBERTY}
76
77# Prevent Sun make from putting in the machine type.  Setting
78# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
79.c.o:
80	${CC} -c ${INTERNAL_CFLAGS} $<
81
82PROGS = cesetup$(EXEEXT)
83
84.PHONY: all info install install-info
85
86all: $(PROGS)
87
88info:
89
90install: $(PROGS)
91	if [ "$(PROGS)" != "" ]; then \
92		for i in $(PROGS); do \
93			$(INSTALL_PROGRAM) $$i $(bindir)/$$i; \
94		done; \
95	fi
96
97install-info:
98
99cesetup$(EXEEXT):	cesetup.o
100	$(CC) $(LDFLAGS) -o cesetup$(EXEEXT) cesetup.o $(CLIBS)
101
102cesetup.o: cesetup.c
103
104mostlyclean:
105
106clean:		mostlyclean
107	rm -f *.o $(PROGS)
108
109distclean:	clean
110	rm -f config.log config.cache
111
112maintainer-clean realclean:	distclean
113
114Makefile: Makefile.in config.status
115	$(SHELL) config.status
116
117config.status: configure
118	$(SHELL) config.status --recheck
119
120