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

Last change on this file since 2 was 2, checked in by bird, 22 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),
12## omit -x in the ld line above.
13## If your system does not have the ld command, comment out
14## or remove both the ld and mv lines above.
15
16OBJ = Version.o backspace.o close.o dfe.o dolio.o due.o endfile.o err.o \
17 fmt.o fmtlib.o ftell_.o iio.o ilnw.o inquire.o lread.o lwrite.o \
18 open.o rdfmt.o rewind.o rsfe.o rsli.o rsne.o sfe.o sue.o typesize.o \
19 uio.o util.o wref.o wrtfmt.o wsfe.o wsle.o wsne.o xwsne.o
20libI77.a: $(OBJ)
21 ar r libI77.a $?
22 -ranlib libI77.a
23
24### If your system lacks ranlib, you don't need it; see README.
25
26install: libI77.a
27 cp libI77.a /usr/lib/libI77.a
28 ranlib /usr/lib/libI77.a
29
30Version.o: Version.c
31 $(CC) -c Version.c
32
33# To compile with C++, first "make f2c.h"
34f2c.h: f2ch.add
35 cat /usr/include/f2c.h f2ch.add >f2c.h
36
37
38clean:
39 rm -f $(OBJ) libI77.a
40
41clobber: clean
42 rm -f libI77.a
43
44backspace.o: fio.h
45close.o: fio.h
46dfe.o: fio.h
47dfe.o: fmt.h
48due.o: fio.h
49endfile.o: fio.h rawio.h
50err.o: fio.h rawio.h
51fmt.o: fio.h
52fmt.o: fmt.h
53ftell_.o: fio.h
54iio.o: fio.h
55iio.o: fmt.h
56ilnw.o: fio.h
57ilnw.o: lio.h
58inquire.o: fio.h
59lread.o: fio.h
60lread.o: fmt.h
61lread.o: lio.h
62lread.o: fp.h
63lwrite.o: fio.h
64lwrite.o: fmt.h
65lwrite.o: lio.h
66open.o: fio.h rawio.h
67rdfmt.o: fio.h
68rdfmt.o: fmt.h
69rdfmt.o: fp.h
70rewind.o: fio.h
71rsfe.o: fio.h
72rsfe.o: fmt.h
73rsli.o: fio.h
74rsli.o: lio.h
75rsne.o: fio.h
76rsne.o: lio.h
77sfe.o: fio.h
78sue.o: fio.h
79uio.o: fio.h
80util.o: fio.h
81wref.o: fio.h
82wref.o: fmt.h
83wref.o: fp.h
84wrtfmt.o: fio.h
85wrtfmt.o: fmt.h
86wsfe.o: fio.h
87wsfe.o: fmt.h
88wsle.o: fio.h
89wsle.o: fmt.h
90wsle.o: lio.h
91wsne.o: fio.h
92wsne.o: lio.h
93xwsne.o: fio.h
94xwsne.o: lio.h
95xwsne.o: fmt.h
96
97check:
98 xsum Notice README Version.c backspace.c close.c dfe.c dolio.c \
99 due.c endfile.c err.c f2ch.add fio.h fmt.c fmt.h fmtlib.c fp.h \
100 ftell_.c iio.c ilnw.c inquire.c lio.h lread.c lwrite.c makefile \
101 open.c rawio.h rdfmt.c rewind.c rsfe.c rsli.c rsne.c sfe.c sue.c \
102 typesize.c uio.c util.c wref.c wrtfmt.c wsfe.c wsle.c wsne.c \
103 xwsne.c >zap
104 cmp zap libI77.xsum && rm zap || diff libI77.xsum zap
Note: See TracBrowser for help on using the repository browser.