Mercurial > sdl-ios-xcode
annotate src/timer/Makefile.am @ 693:6c119628180d
Date: Sat, 16 Aug 2003 16:22:56 +0300
From: "Mike Gorchak"
Subject: Package building for QNX6
I'm just completed the package description file for QNX6 - qpg, it is like a\
.spec files for Linux. Please place SDL.qpg.in file in the root of the proj\
ect, where .spec file is placed. And sdl12qpg.diff - just adding the SDL.qpg\
.in. The same for the SDL_image. I'm planning to add .qpg files creation for\
all SDL* projects.
As for shared library building for QNX6. It is very hard to improve the exis\
ting libtool code to support QNX shared libraries. Much easyiest is to remov\
e libtool.m4 code from the acinclude.m4 for those persons, who building shar\
ed libraries for QNX6. I'm described all what they need to do with .so under\
QNX6 in the README.QNX file. And 90% of people used the precompiled librari\
es, so I think it is not big problem :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 23 Aug 2003 23:25:46 +0000 |
parents | 550bccdf04bd |
children | 623b453a3219 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL timer library | |
3 | |
4 noinst_LTLIBRARIES = libtimer.la | |
5 | |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
6 ARCH_SUBDIRS = $(srcdir)/amigaos \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
7 $(srcdir)/beos \ |
509
dad72daf44b3
Added initial support for Dreamcast (thanks HERO!)
Sam Lantinga <slouken@libsdl.org>
parents:
281
diff
changeset
|
8 $(srcdir)/dc \ |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
9 $(srcdir)/epoc \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
10 $(srcdir)/linux \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
11 $(srcdir)/macos \ |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
12 $(srcdir)/mint \ |
630
550bccdf04bd
Added initial support for RISC OS (thanks Peter Naulls!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
13 $(srcdir)/riscos \ |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
14 $(srcdir)/win32 |
0 | 15 |
16 # Include the architecture-independent sources | |
17 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h | |
18 | |
19 # Include the architecture-specific sources | |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
20 if TARGET_MINT |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
21 ARCH_SRCS = SDL_systimer.c SDL_vbltimer.S SDL_vbltimer_s.h |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
22 else |
0 | 23 ARCH_SRCS = SDL_systimer.c |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
24 endif |
0 | 25 |
26 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
27 | |
28 ## Let automake know that it shouldn't distribute linked sources | |
29 BUILT_SOURCES = $(ARCH_SRCS) | |
30 | |
31 ## Let automake know that it should remove these for distribution | |
32 DISTCLEANFILES = $(ARCH_SRCS) | |
33 | |
34 # The architecture specific directories need to be copied into place | |
35 # when building a distribution. | |
36 dist-hook: | |
37 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
38 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
39 (cd $(distdir) && rm -rf `find . -name CVS`) |