From: Andy P. <at...@us...> - 2001-01-20 11:24:43
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/boot In directory usw-pr-cvs1:/tmp/cvs-serv18363/arch/vax/boot Modified Files: Makefile Log Message: New byteorder.h from shengchao li, Start of fixes for arch-vax makefiles Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/boot/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Makefile 2001/01/17 16:13:57 1.1 --- Makefile 2001/01/20 11:24:50 1.2 *************** *** 8,11 **** --- 8,19 ---- # Note 2! The CFLAGS definitions are now in the main makefile... + # Taking the lead from the alpha + + .S.s: + $(CPP) $(AFLAGS) -traditional -o $*.o $< + .S.o: + $(CC) $(AFLAGS) -traditional -c -o $*.o $< + + all: head.o libboot.a |