blob: 92001a7aece998b42afbe9b192a17b70833c1b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
all:: subdirs $(LIBRARY).a
install-shlibs::
uninstall-shlibs::
subdirs:: Makefile
@touch subdirs
clean::
@$(RM) -f subdirs
$(LIBRARY).a: $(OBJS)
@echo " GEN_LIB $@"
@(if test -r $@; then $(RM) -f $@.bak && $(MV) $@ $@.bak; fi)
@$(ARGEN) $@ $(OBJS)
-@$(RANLIB) $@
@$(RM) -f ../$@
@$(LN) $@ ../$@
|