# intel-Linux float-mode routines # Last edited on 2002-11-08 03:04:31 by stolfi OFILES = \ fltasm.o .PHONY: all clean all: ${OFILES} clean: ;\ /bin/rm -f *.o *.ho *.a core OPTFLAGS = -g GCCFLAGS = \ ${OPTFLAGS} \ -ansi -pedantic \ -Wall -Wpointer-arith -Wmissing-prototypes %.o: %.s ;\ gcc -c ${GCCFLAGS} $*.c fltasm.o:: fltasm.c