Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.09 KB

Makefile.am

File metadata and controls

39 lines (30 loc) · 1.09 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
## Makefile.am for the SDL timer library
noinst_LTLIBRARIES = libtimer.la
Sep 11, 2001
Sep 11, 2001
6
7
ARCH_SUBDIRS = $(srcdir)/amigaos \
$(srcdir)/beos \
Oct 5, 2002
Oct 5, 2002
8
$(srcdir)/dc \
Sep 11, 2001
Sep 11, 2001
9
10
11
$(srcdir)/epoc \
$(srcdir)/linux \
$(srcdir)/macos \
Feb 17, 2002
Feb 17, 2002
12
$(srcdir)/mint \
May 29, 2003
May 29, 2003
13
$(srcdir)/riscos \
Sep 11, 2001
Sep 11, 2001
14
$(srcdir)/win32
Apr 26, 2001
Apr 26, 2001
15
16
17
18
19
# Include the architecture-independent sources
COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h
# Include the architecture-specific sources
Feb 17, 2002
Feb 17, 2002
20
if TARGET_MINT
Dec 14, 2003
Dec 14, 2003
21
ARCH_SRCS = SDL_systimer.c mint/SDL_vbltimer.S mint/SDL_vbltimer_s.h
Feb 17, 2002
Feb 17, 2002
22
else
Apr 26, 2001
Apr 26, 2001
23
ARCH_SRCS = SDL_systimer.c
Feb 17, 2002
Feb 17, 2002
24
endif
Apr 26, 2001
Apr 26, 2001
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS)
## Let automake know that it shouldn't distribute linked sources
BUILT_SOURCES = $(ARCH_SRCS)
## Let automake know that it should remove these for distribution
DISTCLEANFILES = $(ARCH_SRCS)
# The architecture specific directories need to be copied into place
# when building a distribution.
dist-hook:
(cd $(distdir) && rm -f $(BUILT_SOURCES))
cp -rp $(ARCH_SUBDIRS) $(distdir)
(cd $(distdir) && rm -rf `find . -name CVS`)