15 lines
319 B
Makefile
15 lines
319 B
Makefile
|
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)
|