source: trunk/src/gcc/libf2c/libI77/makefile.netlib@ 1392

Last change on this file since 1392 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 2.2 KB
Line 
1.SUFFIXES: .c .o
2CC = cc
3CFLAGS = -O
4SHELL = /bin/sh
5
6# compile, then strip unnecessary symbols
7.c.o:
8 $(CC) -c -DSkip_f2c_Undefs $(CFLAGS) $*.c
9 ld -r -x -o $*.xxx $*.o
10 mv $*.xxx $*.o
11## Under Solaris (and other systems that do not understand ld -x),