mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 06:23:39 +01:00
14 lines
315 B
Makefile
14 lines
315 B
Makefile
|
OPENLIBM_HOME=$(abspath ..)
|
||
|
include ../Make.inc
|
||
|
|
||
|
all: test-double test-float
|
||
|
|
||
|
test-double: test-double.c
|
||
|
gcc $< -D__BSD_VISIBLE -I ../include -I../src ../libopenlibm.a -o $@
|
||
|
|
||
|
test-float: test-float.c
|
||
|
gcc $< -D__BSD_VISIBLE -I ../include -I../src ../libopenlibm.a -o $@
|
||
|
|
||
|
clean:
|
||
|
rm -f *~ *# test-double test-float
|