source: rtems/cpukit/libmisc/stackchk/Makefile.am @ 5a8a05b

4.104.114.84.95
Last change on this file since 5a8a05b 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: 749 bytes
RevLine 
[df49c60]1##
[70810dc]2## $Id$
[df49c60]3##
[9608320]4
5
[620e8263]6include_rtemsdir = $(includedir)/rtems
7
[5a8a05b]8LIBNAME = libstackchk
[70810dc]9LIB = $(ARCH)/$(LIBNAME).a
[9608320]10
11C_FILES = check.c
[126660c5]12OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
[9608320]13
[620e8263]14noinst_HEADERS = internal.h
15include_rtems_HEADERS = stackchk.h
[9608320]16
[5e622a9]17include $(top_srcdir)/../automake/compile.am
18include $(top_srcdir)/../automake/lib.am
[9608320]19
20$(PROJECT_INCLUDE)/rtems:
21        @$(mkinstalldirs) $@
22$(PROJECT_INCLUDE)/rtems/%.h: %.h
23        $(INSTALL_DATA) $< $@
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
[70810dc]29$(LIB): $(OBJS)
[9608320]30        $(make-library)
31
[aea9bb46]32PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
[620e8263]33    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
[70810dc]34
[5e622a9]35all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
[70810dc]36
37.PRECIOUS: $(LIB)
[9608320]38
[620e8263]39EXTRA_DIST = README check.c
[9608320]40
[5e622a9]41include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.