Mercurial > sdl-ios-xcode
annotate src/main/Makefile.am @ 141:218325a2653f
Include MacOS X in the distribution
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 09 Aug 2001 06:05:55 +0000 |
parents | 69ee0b88b615 |
children | 4382c38dfbee |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the main() function in the SDL library | |
3 # | |
4 # This is necessary because some platforms have special program | |
5 # entry points, which require special application initialization. | |
6 | |
141
218325a2653f
Include MacOS X in the distribution
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
7 ARCH_SUBDIRS = $(srcdir)/beos $(srcdir)/linux \ |
218325a2653f
Include MacOS X in the distribution
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
8 $(srcdir)/macos $(srcdir)/macosx $(srcdir)/win32 |
0 | 9 |
10 # Build a separate library containing the main() entry point. | |
11 lib_LIBRARIES = libSDLmain.a | |
12 | |
13 MAINLIB_ARCH_SRCS = SDL_main.c | |
14 | |
15 libSDLmain_a_SOURCES = $(MAINLIB_ARCH_SRCS) | |
16 | |
17 # Build an internal library of any special app setup functions | |
18 noinst_LTLIBRARIES = libarch.la | |
19 | |
20 if TARGET_BEOS | |
21 ARCH_SRCS = SDL_BeApp.cc SDL_BeApp.h | |
22 else | |
23 ARCH_SRCS = | |
24 endif | |
25 | |
26 # Include the architecture-independent sources | |
27 COMMON_SRCS = dummy.c | |
28 | |
29 libarch_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
30 | |
31 ## Let automake know that it shouldn't distribute linked sources | |
32 BUILT_SOURCES = $(MAINLIB_ARCH_SRCS) $(ARCH_SRCS) | |
33 | |
34 ## Let automake know that it should remove these for distribution | |
35 DISTCLEANFILES = $(MAINLIB_ARCH_SRCS) $(ARCH_SRCS) | |
36 | |
37 # The architecture specific directories need to be copied into place | |
38 # when building a distribution. | |
39 dist-hook: | |
40 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
41 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
42 (cd $(distdir) && rm -rf `find . -name CVS`) |