source: rtems/c/src/libmisc/dumpbuf/Makefile.am @ f3d7592

4.104.114.84.95
Last change on this file since f3d7592 was 7fcc26ac, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:32:34

2000-09-04 Ralf Corsepius <corsepiu@…>

  • cpuuse/Makefile.am, dummy/Makefile.am, dumpbuf/Makefile.am, monitor/Makefile.am, rtmonuse/Makefile.am, stackchk/Makefile.am, untar/Makefile.am, wrapup/Makefile.am, mw-fb/Makefile.am: Include compile.am.
  • Property mode set to 100644
File size: 788 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = libdumpbuf-tmp
8LIB = $(ARCH)/$(LIBNAME).a
9
10C_FILES = dumpbuf.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
12
13H_FILES = dumpbuf.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    $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%)
35
36all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
37
38.PRECIOUS: $(LIB)
39
40EXTRA_DIST = dumpbuf.c dumpbuf.h
41
42include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.