]> icculus.org git repositories - btb/d2x.git/blob - maths/Makefile.am
Import of d2x-0.0.8
[btb/d2x.git] / maths / Makefile.am
1 noinst_LIBRARIES = libmaths.a
2 INCLUDES = -I $(top_srcdir)/includes 
3
4 libmaths_a_SOURCES = vecmat.c rand.c tables.c fixc.c
5
6 if USE_ASM
7   SUFFIXES = .asm
8   %.o: %.asm
9         $(NASM) $(NASMFLAGS) $< -o $@
10
11   libmaths_a_SOURCE += vecmata.asm fix.asm
12   libmaths_a_LIBADD += vecmata.o fix.o
13   vecmat.c rand.c tables.c: fix.o vecmata.o
14 endif