mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
* automake/compile.am: Introduce depend-gcc. * automake/lib.am: Remove stray comment. * automake/local.am: Introduce depend-gcc.
23 lines
273 B
Plaintext
23 lines
273 B
Plaintext
##
|
|
## $Id$
|
|
##
|
|
|
|
AR = @AR@
|
|
RANLIB = @RANLIB@
|
|
|
|
ARFLAGS = ruv
|
|
|
|
define make-library
|
|
test -d $(ARCH) || mkdir $(ARCH)
|
|
$(RM) $@
|
|
$(AR) $(ARFLAGS) $@ $^
|
|
$(RANLIB) $@
|
|
endef
|
|
|
|
$(PROJECT_RELEASE)/lib:
|
|
@$(mkinstalldirs) $@
|
|
|
|
TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
|
|
|
|
.PRECIOUS: $(LIB)
|