Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 1.41 KB

Makefile.am

File metadata and controls

52 lines (43 loc) · 1.41 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
Dec 14, 2003
Dec 14, 2003
22
MAINLIB_ARCH_SRCS = macosx/SDLMain.m macosx/SDLMain.h
Aug 21, 2001
Aug 21, 2001
23
else
May 19, 2002
May 19, 2002
24
if TARGET_QTOPIA
Dec 14, 2003
Dec 14, 2003
25
MAINLIB_ARCH_SRCS = qtopia/SDL_qtopia_main.cc
May 19, 2002
May 19, 2002
26
else
Dec 14, 2003
Dec 14, 2003
27
MAINLIB_ARCH_SRCS = dummy/SDL_dummy_main.c
Feb 12, 2004
Feb 12, 2004
28
29
30
endif # !TARGET_QTOPIA
endif # !TARGET_MACOSX
endif # !TARGET_WIN32
Apr 26, 2001
Apr 26, 2001
31
32
33
34
35
36
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
37
ARCH_SRCS = beos/SDL_BeApp.cc beos/SDL_BeApp.h
Apr 26, 2001
Apr 26, 2001
38
else
Dec 14, 2003
Dec 14, 2003
39
ARCH_SRCS = arch.c
Apr 26, 2001
Apr 26, 2001
40
41
endif
Dec 14, 2003
Dec 14, 2003
42
libarch_la_SOURCES = $(ARCH_SRCS)
Apr 26, 2001
Apr 26, 2001
43
Jan 29, 2004
Jan 29, 2004
44
45
46
exports:
for i in $(ARCH_SUBDIRS); do if [ -d $$i/exports ]; then (cd $$i/exports; make); fi; done
Apr 26, 2001
Apr 26, 2001
47
48
49
50
51
52
# 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`)