Makefile 315 B

12345678910111213
  1. OPENLIBM_HOME=$(abspath ..)
  2. include ../Make.inc
  3. all: test-double test-float
  4. test-double: test-double.c
  5. gcc $< -D__BSD_VISIBLE -I ../include -I../src ../libopenlibm.a -o $@
  6. test-float: test-float.c
  7. gcc $< -D__BSD_VISIBLE -I ../include -I../src ../libopenlibm.a -o $@
  8. clean:
  9. rm -f *~ *# test-double test-float