home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / GNUSRC.Z / t-sol2-nextpdo < prev    next >
Encoding:
Text File  |  1996-06-12  |  1.1 KB  |  35 lines

  1. # we need to supply our own assembly versions of libgcc1.c files,
  2. # since the user may not have native 'cc' available
  3.  
  4. LIBGCC1 = libgcc1.null
  5. CROSS_LIBGCC1 = libgcc1.null
  6. CC = gcc
  7.  
  8. # gmon build rule:
  9. gmon.o:    $(srcdir)/config/sparc/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H)
  10.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \
  11.         -c $(srcdir)/config/sparc/gmon-sol2.c -o gmon.o
  12.  
  13. # Assemble startup files.
  14. crt1.o: $(srcdir)/config/sparc/sol2-nextpdo-c1.asm
  15.     $(AS) -o crt1.o $(srcdir)/config/sparc/sol2-nextpdo-c1.asm
  16. crti.o: $(srcdir)/config/sparc/sol2-ci.asm
  17.     $(AS) -o crti.o $(srcdir)/config/sparc/sol2-ci.asm
  18. crtn.o: $(srcdir)/config/sparc/sol2-cn.asm
  19.     $(AS) -o crtn.o $(srcdir)/config/sparc/sol2-cn.asm
  20.  
  21. AR=/usr/ccs/bin/ar
  22. OLDAR=/usr/ccs/bin/ar
  23.  
  24. # When gcc is running on a NeXT, we want the make interaction in it.
  25.  
  26. COMMON_OBJS = makeUser.o make-support.o
  27.  
  28. makeUser.o: config/next/makeUser.c config/next/make.h
  29.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  30.       $(srcdir)/config/next/makeUser.c
  31.  
  32. make-support.o: config/next/make-support.c config/next/make.h
  33.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  34.       $(srcdir)/config/next/make-support.c
  35.