# Makefile -- Contains the makefile from fs/proc, together with modifications # to support AllocInfo. # Copyright C2009 by EQware Engineering, Inc. # # Makefile is part of AllocInfo. # # AllocInfo is free software: you can redistribute it and/or modify # it under the terms of version 3 of the GNU General Public License # as published by the Free Software Foundation # # AllocInfo is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with AllocInfo. If not, see http://www.gnu.or/licenses. # ###################################################################### # # Makefile for the Linux proc filesystem routines. # obj-$(CONFIG_PROC_FS) += proc.o proc-y := nommu.o task_nommu.o proc-$(CONFIG_MMU) := mmu.o task_mmu.o proc-y += inode.o root.o base.o generic.o array.o \ proc_tty.o proc-y += allocinfo.o proc-y += cmdline.o proc-y += cpuinfo.o proc-y += devices.o proc-y += interrupts.o proc-y += loadavg.o proc-y += meminfo.o proc-y += stat.o proc-y += uptime.o proc-y += version.o proc-$(CONFIG_PROC_SYSCTL) += proc_sysctl.o proc-$(CONFIG_NET) += proc_net.o proc-$(CONFIG_PROC_KCORE) += kcore.o proc-$(CONFIG_PROC_VMCORE) += vmcore.o proc-$(CONFIG_PROC_DEVICETREE) += proc_devtree.o proc-$(CONFIG_PRINTK) += kmsg.o proc-$(CONFIG_PROC_PAGE_MONITOR) += page.o