mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
14 lines
319 B
Makefile
14 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)
|