mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 17:00:49 +01:00
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)
|