source: rtems/cpukit/libmisc/wrapup/Makefile.am @ ce275cf

4.104.114.84.95
Last change on this file since ce275cf was ce275cf, checked in by Jennifer Averett <Jennifer.Averett@…>, on 08/06/03 at 19:14:14

2003-08-06 Thomas Doerfler<Thomas.Doerfler@…>

PR 369/filesystem

  • Makefile.am, shell/cmds.c, wrapup/Makefile.am: sample application to show the use of the DOSFS functions
  • fsmount/Makefile.am, fsmount/README, fsmount/fsmount.c, fsmount/fsmount.h: New files.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5LIB = $(ARCH)/libmisc.a
6
7include $(top_srcdir)/automake/compile.am
8include $(top_srcdir)/automake/lib.am
9
10TMP_LIBS = ../monitor/$(ARCH)/libmonitor.a
11TMP_LIBS += ../untar/$(ARCH)/libuntar.a
12TMP_LIBS += ../stackchk/$(ARCH)/libstackchk.a
13TMP_LIBS += ../cpuuse/$(ARCH)/libcpuuse.a
14TMP_LIBS += ../rtmonuse/$(ARCH)/librtmonuse.a
15
16## XXX temporarily remove this from the list because it causes a
17## XXX number of BSPs to not link "main(){}" used by autoconf
18# if LIBSERDBG
19# TMP_LIBS += ../serdbg/$(ARCH)/libserdbg.a
20# endif
21
22if LIBSHELL
23TMP_LIBS += ../shell/$(ARCH)/libshell.a
24endif
25
26TMP_LIBS += ../dumpbuf/$(ARCH)/libdumpbuf.a
27TMP_LIBS += ../devnull/$(ARCH)/libdevnull.a
28TMP_LIBS += ../dummy/$(ARCH)/libdummy.a
29TMP_LIBS += ../mw-fb/$(ARCH)/libmw-fb.a
30TMP_LIBS += ../capture/$(ARCH)/libcapture.a
31TMP_LIBS += ../fsmount/$(ARCH)/libfsmount.a
32
33#
34# (OPTIONAL) Add local stuff here using +=
35#
36
37$(LIB): $(TMP_LIBS)
38        $(RM) $@
39        $(RM) -r $(ARCH)
40        mkdir $(ARCH)
41        cd $(ARCH); for lib in $^; do $(AR) -xv ../$$lib; done
42        $(AR) ruv $@ $(ARCH)/*
43        $(RANLIB) $@
44
45all-local: $(ARCH) $(LIB)
46
47include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.