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

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [gdb-5.0/] [utils/] [amd-udi/] [udi/] [Makefile.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
#
2
# Makefile for utils/amd-udi/udi libraries
3
#   Copyright (C) 1993 Free Software Foundation
4
#
5
# This file 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
#       $Id: Makefile.in,v 1.1.1.1 2001-05-18 11:27:51 markom Exp $
20
#
21
# Written by Jeffrey Wheat (cassidy@cygnus.com)
22
#
23
 
24
#### Start of system configuration section. ####
25
 
26
srcdir = @srcdir@
27
VPATH = @srcdir@
28
 
29
CC = @CC@
30
 
31
INSTALL = @INSTALL@
32
INSTALL_PROGRAM = @INSTALL_PROGRAM@
33
INSTALL_DATA = @INSTALL_DATA@
34
 
35
DEFS = @DEFS@
36
LIBS = @LIBS@
37
RANLIB = @RANLIB@
38
 
39
AR = ar
40
AR_FLAGS = cq
41
 
42
CFLAGS = -g
43
 
44
LD = ld
45
LDFLAGS = -g
46
 
47
MV = mv
48
RM = rm
49
 
50
prefix = /usr/local
51
exec_prefix = $(prefix)
52
 
53
bindir = $(exec_prefix)/bin
54
libdir = $(exec_prefix)/lib
55
 
56
mandir = $(prefix)/man
57
man1dir = $(mandir)/man1
58
man2dir = $(mandir)/man2
59
man3dir = $(mandir)/man3
60
man4dir = $(mandir)/man4
61
man5dir = $(mandir)/man5
62
man6dir = $(mandir)/man6
63
man7dir = $(mandir)/man7
64
man8dir = $(mandir)/man8
65
 
66
SHELL = /bin/sh
67
 
68
INSTALL = install -c
69
INSTALL_DATA = $(INSTALL)
70
INSTALL_PROGRAM = $(INSTALL)
71
 
72
#### End of system configuration section. ####
73
 
74
INCLUDE = -I$(srcdir)/../udi -I$(srcdir)/../include
75
 
76
LIBDFE_OBJS = udip2soc.o
77
LIBTIP_OBJS = soc2udip.o
78
SHARED_OBJS = udr.o
79
 
80
all:    libtip.a libdfe.a
81
 
82
libdfe.a: $(SHARED_OBJS) $(LIBDFE_OBJS)
83
        $(AR) $(AR_FLAGS) $@ $(SHARED_OBJS) $(LIBDFE_OBJS)
84
        $(RANLIB) $@
85
 
86
libtip.a: $(SHARED_OBJS) $(LIBTIP_OBJS)
87
        @$(RM) -f $@
88
        @$(AR) $(AR_FLAGS) $@ $(SHARED_OBJS) $(LIBTIP_OBJS)
89
        $(RANLIB) $@
90
 
91
.c.o:
92
        $(CC) $(INCLUDE) $(DEFS) $(CFLAGS) -c $<
93
 
94
install: all
95
 
96
mostlyclean clean:
97
        $(RM) -f *.o libdfe.a libtip.a
98
 
99
distclean maintainer-clean realclean: clean
100
        $(RM) -f Makefile config.status
101
 
102
.PHONY: check installcheck info install-info clean-info dvi
103
 
104
check installcheck:
105
 
106
info install-info clean-info dvi:
107
 
108
# with the gnu make, this is done automatically.
109
 
110
Makefile: Makefile.in
111
        $(SHELL) ./config.status
112
 
113
config.status: configure
114
        $(srcdir)/configure --no-create
115
 
116
configure: configure.in
117
        autoconf
118
 
119
# Prevent GNU make v3 from overflowing arg limit on SysV.
120
.NOEXPORT:

powered by: WebSVN 2.1.0

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