source: trunk/libs/newlib/src/etc/Makefile.in @ 567

Last change on this file since 567 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 1.4 KB
Line 
1#
2# Makefile.in for etc
3#
4
5DESTDIR         =
6
7prefix          = @prefix@
8exec_prefix     = @exec_prefix@
9
10srcdir  = @srcdir@
11VPATH   = @srcdir@
12
13bindir  = @bindir@
14libdir  = @libdir@
15tooldir = $(libdir)
16datadir = @datadir@
17
18mandir  = @mandir@
19man1dir = $(mandir)/man1
20man2dir = $(mandir)/man2
21man3dir = $(mandir)/man3
22man4dir = $(mandir)/man4
23man5dir = $(mandir)/man5
24man6dir = $(mandir)/man6
25man7dir = $(mandir)/man7
26man8dir = $(mandir)/man8
27man9dir = $(mandir)/man9
28datarootdir = @datarootdir@
29docdir = @docdir@
30infodir = @infodir@
31pdfdir = @docdir@
32htmldir = @htmldir@
33
34SHELL = /bin/sh
35
36INSTALL         = @INSTALL@
37INSTALL_PROGRAM = @INSTALL_PROGRAM@
38INSTALL_DATA    = @INSTALL_DATA@
39
40#### Host, target, and site specific Makefile fragments come in here.
41###
42
43all:
44
45clean:
46
47mostlyclean: clean
48
49distclean:   clean
50        rm -f Makefile config.status config.cache
51
52maintainer-clean realclean:   distclean
53
54Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) \
55        config.status
56        $(SHELL) ./config.status
57
58AUTOCONF = autoconf
59configure_deps = $(srcdir)/configure.in
60
61$(srcdir)/configure: @MAINT@ $(configure_deps)
62        cd $(srcdir) && $(AUTOCONF)
63
64config.status: $(srcdir)/configure
65        $(SHELL) ./config.status --recheck
66
67## these last targets are for standards.texi conformance
68dist:
69check:
70info html dvi ps pdf:
71install install-strip install-info install-html install-pdf:
72installcheck:
73uninstall:
74TAGS:
Note: See TracBrowser for help on using the repository browser.