File: Makefile.lib

package info (click to toggle)
groff 1.11a-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,520 kB
  • ctags: 6,883
  • sloc: cpp: 55,133; ansic: 5,228; yacc: 2,954; asm: 1,866; makefile: 1,097; sh: 403; perl: 397; sed: 46
file content (14 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (5)
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)