source: rtems/c/src/libmisc/rootfs/Makefile.am @ be2cd08

4.104.114.84.95
Last change on this file since be2cd08 was be2cd08, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:49:39

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • cpuuse/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • devnull/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • dummy/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • dumpbuf/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • monitor/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • mw-fb/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rootfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtmonuse/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • shell/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • stackchk/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • untar/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 846 bytes
Line 
1##
2## $Id$
3##
4
5
6LIBNAME = librootfs-tmp
7LIB = $(ARCH)/$(LIBNAME).a
8
9C_FILES = mkrootfs.c
10C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
11
12include_rtemsdir = $(includedir)/rtems
13include_rtems_HEADERS = mkrootfs.h
14
15OBJS = $(C_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../automake/compile.am
19include $(top_srcdir)/../../../automake/lib.am
20
21$(PROJECT_INCLUDE)/rtems:
22        @$(mkinstalldirs) $@
23$(PROJECT_INCLUDE)/rtems/%.h: %.h
24        $(INSTALL_DATA) $< $@
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(LIB): $(OBJS)
31        $(make-library)
32
33PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
34    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
35
36if HAS_NETWORKING
37all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
38endif
39
40.PRECIOUS: $(LIB)
41
42EXTRA_DIST = README mkrootfs.c
43
44include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.