source: rtems/c/src/libmisc/dummy/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: 677 bytes
Line 
1##
2## $Id$
3##
4
5
6PGMNAME = dummy
7PGM = $(ARCH)/$(PGMNAME).rel
8
9C_FILES = dummy.c
10C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
11
12OBJS = $(C_O_FILES)
13
14include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
15include $(top_srcdir)/../../../automake/compile.am
16include $(top_srcdir)/../../../automake/lib.am
17
18#
19# (OPTIONAL) Add local stuff here using +=
20#
21
22$(PGM): $(OBJS)
23        $(make-rel)
24
25$(PROJECT_RELEASE)/lib/$(PGMNAME)$(LIB_VARIANT).rel: $(PGM)
26        $(INSTALL_DATA) $< $@
27
28TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(PGMNAME)$(LIB_VARIANT).rel
29
30all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
31
32.PRECIOUS: $(PGM)
33
34EXTRA_DIST = README dummy.c
35
36include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.