21 lines
374 B
Makefile
21 lines
374 B
Makefile
|
LIBCLEAN=lib$(LIB).a
|
||
|
MAKEFILEPARTS=\
|
||
|
$(top_srcdir)/Makefile.comm \
|
||
|
$(top_builddir)/Makefile.cfg \
|
||
|
$(srcdir)/Makefile.sub \
|
||
|
$(top_srcdir)/Makefile.lib \
|
||
|
Makefile.dep
|
||
|
|
||
|
all: lib$(LIB).a
|
||
|
|
||
|
lib$(LIB).a: $(OBJS)
|
||
|
$(AR) r $@ $?
|
||
|
$(RANLIB) $@
|
||
|
|
||
|
depend: depend_src
|
||
|
depend.temp: $(GENSRCS)
|
||
|
TAGS: $(CCSRCS) $(CSRCS)
|
||
|
Makefile: $(MAKEFILEPARTS)
|
||
|
Makefile.dep:
|
||
|
touch Makefile.dep
|