Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.11 KB

Makefile.am

File metadata and controls

45 lines (37 loc) · 1.11 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
## 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.
# Build a separate library containing the main() entry point.
lib_LIBRARIES = libSDLmain.a
Dec 14, 2003
Dec 14, 2003
10
11
12
if TARGET_WIN32
MAINLIB_ARCH_SRCS = win32/SDL_win32_main.c
else
Aug 21, 2001
Aug 21, 2001
13
if TARGET_MACOSX
Sep 8, 2005
Sep 8, 2005
14
if USE_COCOA
Dec 14, 2003
Dec 14, 2003
15
MAINLIB_ARCH_SRCS = macosx/SDLMain.m macosx/SDLMain.h
Aug 21, 2001
Aug 21, 2001
16
else
Sep 8, 2005
Sep 8, 2005
17
18
19
20
21
if USE_CARBON
MAINLIB_ARCH_SRCS = macos/SDL_main.c
endif # USE_CARBON
endif # USE_COCOA
else
May 19, 2002
May 19, 2002
22
if TARGET_QTOPIA
Dec 14, 2003
Dec 14, 2003
23
MAINLIB_ARCH_SRCS = qtopia/SDL_qtopia_main.cc
May 19, 2002
May 19, 2002
24
else
Dec 14, 2003
Dec 14, 2003
25
MAINLIB_ARCH_SRCS = dummy/SDL_dummy_main.c
Feb 12, 2004
Feb 12, 2004
26
27
28
endif # !TARGET_QTOPIA
endif # !TARGET_MACOSX
endif # !TARGET_WIN32
Apr 26, 2001
Apr 26, 2001
29
30
31
32
33
34
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
35
ARCH_SRCS = beos/SDL_BeApp.cc beos/SDL_BeApp.h
Apr 26, 2001
Apr 26, 2001
36
else
Dec 14, 2003
Dec 14, 2003
37
ARCH_SRCS = arch.c
Apr 26, 2001
Apr 26, 2001
38
39
endif
Dec 14, 2003
Dec 14, 2003
40
libarch_la_SOURCES = $(ARCH_SRCS)
Apr 26, 2001
Apr 26, 2001
41
Jan 29, 2004
Jan 29, 2004
42
exports:
Feb 16, 2006
Feb 16, 2006
43
44
45
for i in $(srcdir)/*; do if [ -d $$i/exports ]; then (cd $$i/exports; make); fi; done
EXTRA_DIST = beos dummy epoc linux macos macosx qtopia win32