2004-02-09 Joel Sherrill <joel@OARcorp.com>

PR make_build/574
	* Makefile.am: Re-added since missing for some reason.
This commit is contained in:
Joel Sherrill
2004-02-09 14:03:44 +00:00
parent d1bcf10669
commit 38c7e48100
2 changed files with 50 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2004-02-09 Joel Sherrill <joel@OARcorp.com>
PR make_build/574
* Makefile.am: Re-added since missing for some reason.
2004-02-03 Joel Sherrill <joel@OARcorp.com> 2004-02-03 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: Removed. * Makefile.am: Removed.

View File

@@ -0,0 +1,45 @@
##
## $Id$
##
ACLOCAL_AMFLAGS = -I ../../../../../aclocal
VPATH = @srcdir@:@srcdir@/../shared/src
C_FILES = cache.c cache_aligned_malloc.c cache_manager.c displayCpu.c page.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include_libcpudir = $(includedir)/libcpu
noinst_HEADERS = cache_.h
include_libcpu_HEADERS = cpu.h cpuModel.h cache.h
S_FILES = cpuModel.S idtr.S
OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../../../automake/compile.am
include $(top_srcdir)/../../../../../automake/lib.am
AM_CPPFLAGS += -I$(srcdir)
$(PROJECT_INCLUDE)/libcpu:
$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/libcpu/%.h: %.h
$(INSTALL_DATA) $< $@
cache.h: $(top_srcdir)/../shared/include/cache.h
cp $< $@
PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
$(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
CLEANFILES = cache.h
EXTRA_DIST = cache.c cache_.h cpu.h cpuModel.S cpuModel.h displayCpu.c idt.c \
idtr.S page.c registers.h
include $(top_srcdir)/../../../../../automake/local.am