blob: 019ba6af210546445a3dfa9b24b292928da1693a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
LIBCLEAN=lib$(LIB).a
MAKEFILEPARTS=$(srcdir)/../Makefile.comm ../Makefile.cfg \
$(srcdir)/Makefile.sub $(srcdir)/../Makefile.lib $(srcdir)/Makefile.dep
all: lib$(LIB).a
lib$(LIB).a: $(OBJS)
$(AR) r $@ $?
$(RANLIB) $@
depend: depend_src
depend.temp: $(GENSRCS)
TAGS: $(CCSRCS) $(CSRCS)
Makefile: $(MAKEFILEPARTS)
|