]> icculus.org git repositories - btb/d2x.git/blob - arch/dos/Makefile.am
junk removal
[btb/d2x.git] / arch / dos / Makefile.am
1 if ENV_DJGPP
2
3 noinst_LIBRARIES = libarchdos.a
4 INCLUDES = -I $(top_srcdir)/includes -Iinclude -I $(top_srcdir)/main -I$(top_srcdir)/input/sdl/include
5
6 libarchdos_a_SOURCES = init.c dpmi.c findfile.c vesa.c
7
8
9 if USE_ASM
10   SUFFIXES = .asm
11   %.o: %.asm
12         $(NASM) $(NASMFLAGS) $< -o $@
13         
14   libarchdos_a_SOURCES += timer.asm modex.asm
15   libarchdos_a_LIBADD += timer.o modex.o
16   init.c: timer.o modex.o
17 endif
18
19
20 endif