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

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [gdb-5.0/] [utils/] [spu/] [Makefile.in] - Blame information for rev 106

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
# Copyright 1993, 1994 Free Software Foundation, Inc.
2
 
3
# This file is part of GNU CC.
4
 
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
#
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
 
19
prefix = /usr/local
20
 
21
program_transform_name =
22
exec_prefix = $(prefix)
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 -c
44
INSTALL_PROGRAM = $(INSTALL)
45
INSTALL_DATA = $(INSTALL)
46
 
47
AR = ar
48
AR_FLAGS = qv
49
RANLIB = ranlib
50
 
51
# Directory containing source files.  Don't clean up the spacing,
52
# this exact string is matched for by the "configure" script.
53
srcdir = .
54
 
55
# Where is the "include" directory?  Traditionally ../include or ./include
56
 
57
INCLUDE_DIR =  ${srcdir}/../../include
58
INCLUDE_DEP = $$(INCLUDE_DIR)
59
 
60
# All the includes used for CFLAGS and for lint.
61
# -I. for config files.
62
# -I${srcdir} possibly for regex.h also.
63
# -I${srcdir}/config for more generic config files.
64
 
65
INCLUDE_CFLAGS = -I. -I${srcdir} -I${srcdir}/config -I$(INCLUDE_DIR)
66
 
67
# CFLAGS is specifically reserved for setting from the command line
68
# when running make.  I.E.  "make CFLAGS=-Wmissing-prototypes".
69
 
70
CFLAGS = -g
71
 
72
# ALL_CFLAGS is the aggregate of all other *CFLAGS macros.
73
 
74
ALL_CFLAGS = $(CFLAGS) $(INCLUDE_CFLAGS)
75
 
76
# None of the things in CFLAGS will do any harm, and on some systems
77
#  (e.g. SunOS4) it is important to use the MH_CFLAGS.
78
 
79
LDFLAGS = $(CFLAGS)
80
 
81
# Where is the "-liberty" library, containing getopt and obstack?
82
 
83
LIBIBERTY_DIR = ${srcdir}/../../libiberty
84
LIBIBERTY = ./../../libiberty${subdir}/libiberty.a
85
 
86
# Host and target-dependent makefile fragments come in here.
87
####
88
# End of host and target-dependent makefile fragments
89
 
90
# Prevent Sun make from putting in the machine type.  Setting
91
# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
92
 
93
.c.o:
94
        ${CC} -c ${ALL_CFLAGS} $<
95
 
96
OFILES = spu.o
97
 
98
all: spu
99
 
100
info:
101
 
102
install:
103
 
104
install-info:
105
 
106
spu: ${OFILES}
107
        $(CC) $(CFLAGS) -o spu spu.o
108
 
109
spu.o: spu.c
110
 
111
mostlyclean:
112
 
113
clean:          mostlyclean
114
        rm -f *.o spu
115
 
116
distclean:      clean
117
        rm -f Makefile config.status
118
 
119
maintainer-clean realclean:     distclean
120
 
121
Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag)
122
        $(SHELL) config.status
123
 
124
force:

powered by: WebSVN 2.1.0

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