[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / nm

Diff for /src/usr.bin/nm/Makefile between version 1.3 and 1.4

version 1.3, 1997/09/21 11:50:21 version 1.4, 1998/05/11 20:34:56
Line 1 
Line 1 
 #       $OpenBSD$  #       $OpenBSD$
   
   TARGET_MACHINE_ARCH?=   ${MACHINE_ARCH}
   
   .if ${TARGET_MACHINE_ARCH} != ${MACHINE_ARCH}
   # XXX should make this automatic
   .if ${TARGET_MACHINE_ARCH} == "i386"
   CFLAGS+=        -DMID_MACHINE_OVERRIDE=MID_I386
   .elif ${TARGET_MACHINE_ARCH} == "m68k"
   CFLAGS+=        -DMID_MACHINE_OVERRIDE=MID_M68K
   .elif ${TARGET_MACHINE_ARCH} == "ns32k"
   CFLAGS+=        -DMID_MACHINE_OVERRIDE=MID_NS32K
   .elif ${TARGET_MACHINE_ARCH} == "sparc"
   CFLAGS+=        -DMID_MACHINE_OVERRIDE=MID_SPARC
   .elif ${TARGET_MACHINE_ARCH} == "vax"
   CFLAGS+=        -DMID_MACHINE_OVERRIDE=MID_VAX
   .endif
   .endif
   
 PROG=   nm  PROG=   nm
   
 .include <bsd.prog.mk>  .include <bsd.prog.mk>

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4