source: rtems/c/src/exec/score/cpu/unix/rtems/score/Makefile.am @ 6f921ba

Last change on this file since 6f921ba was 6f921ba, checked in by Joel Sherrill <joel.sherrill@…>, on 03/21/00 at 17:57:21

Ran ampolish after getting new version from Ralf Corsepius
<corsepiu@…>.

  • Property mode set to 100644
File size: 715 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7GENSIZE = $(PROJECT_ROOT)/tools/cpu/unix/gensize
8
9GENERIC_H_FILES = unixsize.h
10STATIC_H_FILES = cpu.h unixtypes.h unix.h
11noinst_HEADERS = $(STATIC_H_FILES)
12
13#
14# (OPTIONAL) Add local stuff here using +=
15#
16
17unixsize.h: $(GENSIZE) cpu.h
18        $(RM) $@
19        $(GENSIZE) > $@
20
21CLEANFILES = unixsize.h
22
23PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
24    $(STATIC_H_FILES:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h) \
25    $(GENERIC_H_FILES:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
26
27$(PROJECT_INCLUDE)/rtems/score:
28        $(mkinstalldirs) $@
29
30$(PROJECT_INCLUDE)/rtems/score/%.h: %.h
31        $(INSTALL_DATA) $< $@
32
33all: $(PREINSTALL_FILES)
34
35include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.