summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/wrapup/Makefile.am
blob: 37e922e9b95dede18e1a7391519ac20ce6651fdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
##
## $Id$
##

LIB = $(ARCH)/libfs.a

include $(top_srcdir)/../automake/multilib.am
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/lib.am

IMFSLIB = ../src/imfs/$(ARCH)/libimfs.a

if !UNIX
DOSFSLIB = ../src/dosfs/$(ARCH)/libdosfs.a
endif

TMP_LIBS = $(IMFSLIB) $(DOSFSLIB)

#
# (OPTIONAL) Add local stuff here using +=
#

$(LIB): $(TMP_LIBS)
	$(RM) $@
	$(RM) -r $(ARCH)
	mkdir $(ARCH)
	cd $(ARCH); for lib in $^; do $(AR) -xv ../$$lib; done
	$(AR) ruv $@ $(ARCH)/*
	$(RANLIB) $@

all-local: $(ARCH) $(LIB)

.PRECIOUS: $(LIB)

include $(top_srcdir)/../automake/local.am