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

* Makefile.am: Removed.
This commit is contained in:
Joel Sherrill
2004-02-04 00:53:09 +00:00
parent 042ea5654c
commit 09bc3c9b2e
2 changed files with 4 additions and 44 deletions

View File

@@ -1,3 +1,7 @@
2004-02-03 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: Removed.
2003-09-04 Joel Sherrill <joel@OARcorp.com>
* cpu.c, cpu.h, cpuModel.S, cpuModel.h, displayCpu.c, idtr.S, page.c:

View File

@@ -1,44 +0,0 @@
##
## $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