vserver 1.9.3
[linux-2.6.git] / arch / um / kernel / skas / Makefile
1
2 # Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 # Licensed under the GPL
4 #
5
6 obj-y := exec_kern.o exec_user.o mem.o mem_user.o mmu.o process.o \
7         process_kern.o syscall_kern.o syscall_user.o time.o tlb.o trap_user.o \
8         uaccess.o sys-$(SUBARCH)/
9
10 subdir-y := util
11
12 USER_OBJS = $(filter %_user.o,$(obj-y)) process.o time.o
13 USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file))
14
15 $(USER_OBJS) : %.o: %.c
16         $(CC) $(CFLAGS_$(notdir $@)) $(USER_CFLAGS) -c -o $@ $<