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
 
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.
7
8
ARCH_SUBDIRS = $(srcdir)/beos \
$(srcdir)/epoc \
11
$(srcdir)/macosx \
14
15
16
17
# Build a separate library containing the main() entry point.
lib_LIBRARIES = libSDLmain.a
18
19
20
if TARGET_WIN32
MAINLIB_ARCH_SRCS = win32/SDL_win32_main.c
else
23
MAINLIB_ARCH_SRCS = macosx/SDLMain.m macosx/SDLMain.h
25
26
27
28
29
if USE_CARBON
MAINLIB_ARCH_SRCS = macos/SDL_main.c
endif # USE_CARBON
endif # USE_COCOA
else
31
MAINLIB_ARCH_SRCS = qtopia/SDL_qtopia_main.cc
33
MAINLIB_ARCH_SRCS = dummy/SDL_dummy_main.c
34
35
36
endif # !TARGET_QTOPIA
endif # !TARGET_MACOSX
endif # !TARGET_WIN32
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
43
ARCH_SRCS = beos/SDL_BeApp.cc beos/SDL_BeApp.h
50
51
52
exports:
for i in $(ARCH_SUBDIRS); do if [ -d $$i/exports ]; then (cd $$i/exports; make); fi; done
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`)