Update of /cvsroot/linux-vax/kernel-2.4/arch/vax
In directory usw-pr-cvs1:/tmp/cvs-serv18363/arch/vax
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/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Makefile 2001/01/18 18:49:49 1.3
--- Makefile 2001/01/20 11:24:49 1.4
***************
*** 28,33 ****
CFLAGS := $(CFLAGS) $(CFLAGS_OPT) $(CFLAGS_NSR)
! AFLAGS := -D__ASSEMBLY__ $(CPPFLAGS)
# These flags are used later in _this_ makefile
--- 28,39 ----
CFLAGS := $(CFLAGS) $(CFLAGS_OPT) $(CFLAGS_NSR)
! # Taking the lead from the alpha
+ .S.s:
+ $(CPP) $(AFLAGS) -traditional -o $*.o $<
+ .S.o:
+ $(CC) $(AFLAGS) -traditional -c -o $*.o $<
+
+
# These flags are used later in _this_ makefile
|