comparison src/timer/Makefile.am @ 281:c5010ab8ba35

Added initial support for Atari (thanks Patrice!)
author Sam Lantinga <slouken@libsdl.org>
date Sun, 17 Feb 2002 19:54:28 +0000
parents 83018110dce8
children dad72daf44b3
comparison
equal deleted inserted replaced
280:0ddcea45d829 281:c5010ab8ba35
6 ARCH_SUBDIRS = $(srcdir)/amigaos \ 6 ARCH_SUBDIRS = $(srcdir)/amigaos \
7 $(srcdir)/beos \ 7 $(srcdir)/beos \
8 $(srcdir)/epoc \ 8 $(srcdir)/epoc \
9 $(srcdir)/linux \ 9 $(srcdir)/linux \
10 $(srcdir)/macos \ 10 $(srcdir)/macos \
11 $(srcdir)/mint \
11 $(srcdir)/win32 12 $(srcdir)/win32
12 13
13 # Include the architecture-independent sources 14 # Include the architecture-independent sources
14 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h 15 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h
15 16
16 # Include the architecture-specific sources 17 # Include the architecture-specific sources
18 if TARGET_MINT
19 ARCH_SRCS = SDL_systimer.c SDL_vbltimer.S SDL_vbltimer_s.h
20 else
17 ARCH_SRCS = SDL_systimer.c 21 ARCH_SRCS = SDL_systimer.c
22 endif
18 23
19 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) 24 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS)
20 25
21 ## Let automake know that it shouldn't distribute linked sources 26 ## Let automake know that it shouldn't distribute linked sources
22 BUILT_SOURCES = $(ARCH_SRCS) 27 BUILT_SOURCES = $(ARCH_SRCS)