source: rtems/cpukit/libmisc/untar/Makefile.am @ 77c4089

Last change on this file since 77c4089 was 5a8a05b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/24/03 at 12:05:44

2002-01-24 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add check for weak function attribute. Remove AM_CONDITIONAL([RTEMS_LIBSHELL]. Add AM_CONDITIONAL(LIBSHELL), AM_CONDITIONAL(LIBSERDBG).
  • capture/Makefile.am: Use *.a instead of *-tmp.a.
  • cpuuse/Makefile.am: Use *.a instead of *-tmp.a.
  • devnull/Makefile.am: Use *.a instead of *-tmp.a.
  • dummy/Makefile.am: Use *.a instead of *-tmp.a.
  • dumpbuf/Makefile.am: Use *.a instead of *-tmp.a.
  • monitor/Makefile.am: Use *.a instead of *-tmp.a.
  • mw-fb/Makefile.am: Use *.a instead of *-tmp.a.
  • rtmonuse/Makefile.am: Use *.a instead of *-tmp.a.
  • serdbg/Makefile.am: Use *.a instead of *-tmp.a. Build iff LIBSERDBG is true.
  • shell/Makefile.am: Use *.a instead of *-tmp.a. Build iff LIBSHELL is true.
  • stackchk/Makefile.am: Use *.a instead of *-tmp.a.
  • untar/Makefile.am: Use *.a instead of *-tmp.a.
  • wrapup/Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 715 bytes
Line 
1##
2## $Id$
3##
4
5
6include_rtemsdir = $(includedir)/rtems
7
8LIBNAME = libuntar
9LIB = $(ARCH)/$(LIBNAME).a
10
11C_FILES = untar.c
12OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14include_rtems_HEADERS = untar.h
15
16include $(top_srcdir)/../automake/compile.am
17include $(top_srcdir)/../automake/lib.am
18
19$(PROJECT_INCLUDE)/rtems:
20        @$(mkinstalldirs) $@
21$(PROJECT_INCLUDE)/rtems/%.h: %.h
22        $(INSTALL_DATA) $< $@
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28$(LIB): $(OBJS)
29        $(make-library)
30
31PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
32    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
33
34all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
35
36.PRECIOUS: $(LIB)
37
38EXTRA_DIST = README untar.c
39
40include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.