summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-02-04 00:53:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-02-04 00:53:09 +0000
commit09bc3c9b2e18828c92d936ddfaddd6a7c16bddfb (patch)
treebc6a6843a03827386f417b33b783b44b92996125
parent042ea5654cc3f260eda9d8e9214e54429836817a (diff)
2004-02-03 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: Removed.
-rw-r--r--c/src/lib/libcpu/i386/ChangeLog4
-rw-r--r--c/src/lib/libcpu/i386/Makefile.am44
2 files changed, 4 insertions, 44 deletions
diff --git a/c/src/lib/libcpu/i386/ChangeLog b/c/src/lib/libcpu/i386/ChangeLog
index ea7e800f63..2a8cf6b999 100644
--- a/c/src/lib/libcpu/i386/ChangeLog
+++ b/c/src/lib/libcpu/i386/ChangeLog
@@ -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:
diff --git a/c/src/lib/libcpu/i386/Makefile.am b/c/src/lib/libcpu/i386/Makefile.am
deleted file mode 100644
index bf8fb204ea..0000000000
--- a/c/src/lib/libcpu/i386/Makefile.am
+++ /dev/null
@@ -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