Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 1.51 KB

Makefile.am

File metadata and controls

58 lines (49 loc) · 1.51 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
## Makefile.am for the main() function in the SDL library
#
# This is necessary because some platforms have special program
# entry points, which require special application initialization.
Sep 11, 2001
Sep 11, 2001
7
8
ARCH_SUBDIRS = $(srcdir)/beos \
$(srcdir)/epoc \
Dec 14, 2003
Dec 14, 2003
9
$(srcdir)/dummy \
Sep 11, 2001
Sep 11, 2001
10
$(srcdir)/macos \
Nov 2, 2001
Nov 2, 2001
11
$(srcdir)/macosx \
Dec 14, 2003
Dec 14, 2003
12
$(srcdir)/qtopia \
Sep 11, 2001
Sep 11, 2001
13
$(srcdir)/win32
Apr 26, 2001
Apr 26, 2001
14
15
16
17
# Build a separate library containing the main() entry point.
lib_LIBRARIES = libSDLmain.a
Dec 14, 2003
Dec 14, 2003
18
19
20
if TARGET_WIN32
MAINLIB_ARCH_SRCS = win32/SDL_win32_main.c
else
Aug 21, 2001
Aug 21, 2001
21
if TARGET_MACOSX
Sep 8, 2005
Sep 8, 2005
22
if USE_COCOA
Dec 14, 2003
Dec 14, 2003
23
MAINLIB_ARCH_SRCS = macosx/SDLMain.m macosx/SDLMain.h
Aug 21, 2001
Aug 21, 2001
24
else
Sep 8, 2005
Sep 8, 2005
25
26
27
28
29
if USE_CARBON
MAINLIB_ARCH_SRCS = macos/SDL_main.c
endif # USE_CARBON
endif # USE_COCOA
else
May 19, 2002
May 19, 2002
30
if TARGET_QTOPIA
Dec 14, 2003
Dec 14, 2003
31
MAINLIB_ARCH_SRCS = qtopia/SDL_qtopia_main.cc
May 19, 2002
May 19, 2002
32
else
Dec 14, 2003
Dec 14, 2003
33
MAINLIB_ARCH_SRCS = dummy/SDL_dummy_main.c
Feb 12, 2004
Feb 12, 2004
34
35
36
endif # !TARGET_QTOPIA
endif # !TARGET_MACOSX
endif # !TARGET_WIN32
Apr 26, 2001
Apr 26, 2001
37
38
39
40
41
42
libSDLmain_a_SOURCES = $(MAINLIB_ARCH_SRCS)
# Build an internal library of any special app setup functions
noinst_LTLIBRARIES = libarch.la
if TARGET_BEOS
Dec 14, 2003
Dec 14, 2003
43
ARCH_SRCS = beos/SDL_BeApp.cc beos/SDL_BeApp.h
Apr 26, 2001
Apr 26, 2001
44
else
Dec 14, 2003
Dec 14, 2003
45
ARCH_SRCS = arch.c
Apr 26, 2001
Apr 26, 2001
46
47
endif
Dec 14, 2003
Dec 14, 2003
48
libarch_la_SOURCES = $(ARCH_SRCS)
Apr 26, 2001
Apr 26, 2001
49
Jan 29, 2004
Jan 29, 2004
50
51
52
exports:
for i in $(ARCH_SUBDIRS); do if [ -d $$i/exports ]; then (cd $$i/exports; make); fi; done
Apr 26, 2001
Apr 26, 2001
53
54
55
56
57
58
# 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`)