summaryrefslogtreecommitdiffstats
path: root/uClinux-2.4.20-uc1/mmnommu/Makefile
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2011-03-01 13:19:47 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2011-03-01 13:19:47 (GMT)
commitc5ed56c50061cfaadb6dfa80f0107a605ae1f630 (patch)
tree704338dff4fe9575cafb9a86bfe335fd1dbf933c /uClinux-2.4.20-uc1/mmnommu/Makefile
parenta00bc04c717debbeeaa3010605ac0318f8e4c98d (diff)
downloadopenipcam-c5ed56c50061cfaadb6dfa80f0107a605ae1f630.zip
openipcam-c5ed56c50061cfaadb6dfa80f0107a605ae1f630.tar.gz
openipcam-c5ed56c50061cfaadb6dfa80f0107a605ae1f630.tar.bz2
Bare uClinux-2.4.20-uc1 CVS pull
Diffstat (limited to 'uClinux-2.4.20-uc1/mmnommu/Makefile')
-rw-r--r--uClinux-2.4.20-uc1/mmnommu/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/uClinux-2.4.20-uc1/mmnommu/Makefile b/uClinux-2.4.20-uc1/mmnommu/Makefile
new file mode 100644
index 0000000..2764f61
--- /dev/null
+++ b/uClinux-2.4.20-uc1/mmnommu/Makefile
@@ -0,0 +1,24 @@
+#
+# Makefile for the linux memory manager.
+#
+# Note! Dependencies are done automagically by 'make dep', which also
+# removes any old dependencies. DON'T put your own dependencies here
+# unless it's something special (ie not a .c file).
+#
+# Note 2! The CFLAGS definition is now in the main makefile...
+
+O_TARGET := mmnommu.o
+obj-y := bootmem.o filemap.o mlock.o mmap.o \
+ mprotect.o mremap.o numa.o \
+ slab.o swapfile.o vmalloc.o vmscan.o memory.o \
+ swap.o oom_kill.o
+
+ifdef CONFIG_CONTIGUOUS_PAGE_ALLOC
+obj-y += page_alloc2.o
+else
+obj-y += page_alloc.o
+endif
+
+export-objs := filemap.o memory.o page_alloc.o page_alloc2.o
+
+include $(TOPDIR)/Rules.make