Mercurial > sdl-ios-xcode
annotate src/timer/Makefile.am @ 171:02e27b705645
Handle the case where the WAVE magic number was already read in a non-seekable
stream. I don't know if the code works with non-seekable streams anyway, but
...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 11 Sep 2001 18:52:45 +0000 |
parents | 69ee0b88b615 |
children | 83018110dce8 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL timer library | |
3 | |
4 noinst_LTLIBRARIES = libtimer.la | |
5 | |
138
69ee0b88b615
Applied Paul Jenner's patches to fix "make distcheck" and "make rpm"
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
6 ARCH_SUBDIRS = $(srcdir)/amigaos $(srcdir)/beos $(srcdir)/linux \ |
69ee0b88b615
Applied Paul Jenner's patches to fix "make distcheck" and "make rpm"
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
7 $(srcdir)/macos $(srcdir)/win32 |
0 | 8 |
9 # Include the architecture-independent sources | |
10 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h | |
11 | |
12 # Include the architecture-specific sources | |
13 ARCH_SRCS = SDL_systimer.c | |
14 | |
15 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
16 | |
17 ## Let automake know that it shouldn't distribute linked sources | |
18 BUILT_SOURCES = $(ARCH_SRCS) | |
19 | |
20 ## Let automake know that it should remove these for distribution | |
21 DISTCLEANFILES = $(ARCH_SRCS) | |
22 | |
23 # The architecture specific directories need to be copied into place | |
24 # when building a distribution. | |
25 dist-hook: | |
26 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
27 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
28 (cd $(distdir) && rm -rf `find . -name CVS`) |