comparison Makefile @ 23:e7b9148156c4

arch: hopefully the rest of the SVC related code
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Wed, 27 Apr 2011 14:48:56 -0400
parents ca308c8ca41e
children
comparison
equal deleted inserted replaced
22:5f3618fbf9ae 23:e7b9148156c4
38 38
39 arch/arch.a: $(ARCH_OBJS) 39 arch/arch.a: $(ARCH_OBJS)
40 $(AR) rc $@ $^ 40 $(AR) rc $@ $^
41 41
42 %.o: %.S 42 %.o: %.S
43 $(AS) -m64 -o $@ $< 43 $(CC) $(CFLAGS) -c -o $@ $<
44 44
45 %.o: %.c 45 %.o: %.c
46 $(CC) $(CFLAGS) -include include/system.h -c -o $@ $< 46 $(CC) $(CFLAGS) -include include/system.h -c -o $@ $<
47 47
48 %.o: %.cpp 48 %.o: %.cpp