dxx-rebirth/maths/Makefile.am
Bradley Bell 9bd1ba7c47 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:30:16 +00:00

15 lines
329 B
Makefile

noinst_LIBRARIES = libmaths.a
INCLUDES = -I $(top_srcdir)/includes
libmaths_a_SOURCES = vecmat.c rand.c tables.c fixc.c
if USE_ASM
SUFFIXES = .asm
%.o: %.asm
$(NASM) $(NASMFLAGS) $< -o $@
libmaths_a_SOURCE += vecmata.asm fix.asm
libmaths_a_LIBADD += vecmata.o fix.o
vecmat.c rand.c tables.c: fix.o vecmata.o
endif