tomsfastmath/mtest/makefile

14 lines
269 B
Makefile
Raw Normal View History

2019-10-03 16:54:37 +02:00
# TomsFastMath, a fast ISO C bignum library. -- Tom St Denis
# SPDX-License-Identifier: Unlicense
CFLAGS += -Wall -W -O3 -Wno-unused-result
2004-08-25 04:43:43 +02:00
default: mtest
.PHONY: mtest
2004-08-25 04:43:43 +02:00
mtest: mtest.o
2005-07-23 12:43:03 +02:00
$(CC) $(CFLAGS) mtest.o -ltommath -o mtest
2004-08-25 04:43:43 +02:00
clean:
rm -f *.o mtest *~ mtest.exe