improved for numbers that can be represented exactly

This commit is contained in:
ceriel
1990-12-04 11:33:01 +00:00
parent 0b35c31e5b
commit 8468609eda
3 changed files with 55 additions and 15 deletions

View File

@@ -26,6 +26,10 @@ OBJ = flt_ar2flt.$(SUF) flt_div.$(SUF) flt_flt2ar.$(SUF) flt_modf.$(SUF) \
all: $(LIBFLT)
test: $(LIBFLT) test.c
$(CC) -o test test.c $(LIBFLT)
./test
$(LIBFLT): $(OBJ)
rm -f $(LIBFLT)
$(AR) r $(LIBFLT) $(OBJ)