source: rtems/c/src/automake/lib.am @ c0ed3a2

4.104.114.84.95
Last change on this file since c0ed3a2 was 91fd793d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/05/03 at 22:16:39

2003-12-05 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Cosmetics.
  • automake/lib.am: Add project_libdir. Add preinstallation dirstamp support.
  • Property mode set to 100644
File size: 367 bytes
Line 
1##
2##  $Id$
3##
4
5## LD = @LD@
6AR = @AR@
7RANLIB = @RANLIB@
8
9ARFLAGS = ruv
10
11define make-library
12test -d $(ARCH) || mkdir $(ARCH)
13$(RM) $@
14$(AR) $(ARFLAGS) $@ $^
15$(RANLIB) $@
16endef
17
18project_libdir = $(libdir)
19
20$(PROJECT_RELEASE)/lib/$(dirstamp):
21        @$(mkinstalldirs) $@
22        @: > $(PROJECT_RELEASE)/lib/$(dirstamp)
23
24TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
25
26.PRECIOUS: $(LIB)
Note: See TracBrowser for help on using the repository browser.