# Note: On IRIX, the loader requires code compiled with the -G 0 option.
# Comment out `-G 0' on SunOS
CFLAGS = -g # -G 0
FFLAGS = -O # -G 0
CC = cc

all: mymodule.o mysubs.o legnomial.o

conly: mymodule.o legnomial.o

mymodule.o: mymodule.c 

mysubs.o: mysubs.f

legnomial.o: legnomial.c 

clean:
	rm -f *.ld *.o core

