OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [utils/] [wince/] [Makefile.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.