| Gennady Sharapov | f45d9fc | 2006-01-18 17:42:45 -0800 | [diff] [blame] | 1 | # | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | # Copyright (C) 2002 - 2004 Jeff Dike (jdike@addtoit.com) | 
 | 3 | # Licensed under the GPL | 
 | 4 | # | 
 | 5 |  | 
| Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame^] | 6 | obj-y := clone.o mmu.o process.o syscall.o uaccess.o | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  | 
| Bodo Stroesser | 9786a8f | 2005-07-07 17:56:50 -0700 | [diff] [blame] | 8 | # clone.o is in the stub, so it can't be built with profiling | 
| Paolo 'Blaisorblade' Giarrusso | 275e6e1 | 2006-05-01 12:16:04 -0700 | [diff] [blame] | 9 | # GCC hardened also auto-enables -fpic, but we need %ebx so it can't work -> | 
 | 10 | # disable it | 
 | 11 |  | 
 | 12 | CFLAGS_clone.o := $(CFLAGS_NO_HARDENING) | 
| Paolo 'Blaisorblade' Giarrusso | 7b12b91 | 2006-05-01 12:16:05 -0700 | [diff] [blame] | 13 | UNPROFILE_OBJS := clone.o | 
| Paolo 'Blaisorblade' Giarrusso | 275e6e1 | 2006-05-01 12:16:04 -0700 | [diff] [blame] | 14 |  | 
| Paolo 'Blaisorblade' Giarrusso | 7b12b91 | 2006-05-01 12:16:05 -0700 | [diff] [blame] | 15 | include arch/um/scripts/Makefile.rules |