Mercurial > sdl-ios-xcode
annotate src/timer/Makefile.am @ 158:4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
From: Max Horn <max@quendi.de>
Subject: New patch for OS X
Attached a .patch file for SDL/OSX with some nice bug fixes / enhancments.
* fixes the activation issues, which also caused the window to be
always drawn like an inactive. The close/minimize widgets now are
animated properly, too.
* the menu items are automatically adjusted to use the app name
instead of just "SDL App". I did this so that we really can use one
central SDLMain.nib file, w/o requiring developers to make a copy of
it and adjust it.
* libSDLMain now contains the proper cocoa code, not as before the
carbon code. This means apps no longer have to carry a copy of
SDLMain.m/SDLMain.h
* revamped configure.in to properly build a Cocoa/Quartz SDL lib, not
a Carbon based SDL lib
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 21 Aug 2001 07:19:59 +0000 |
parents | 69ee0b88b615 |
children | 83018110dce8 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL timer library | |
3 | |
4 noinst_LTLIBRARIES = libtimer.la | |
5 | |
138
69ee0b88b615
Applied Paul Jenner's patches to fix "make distcheck" and "make rpm"
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
6 ARCH_SUBDIRS = $(srcdir)/amigaos $(srcdir)/beos $(srcdir)/linux \ |
69ee0b88b615
Applied Paul Jenner's patches to fix "make distcheck" and "make rpm"
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
7 $(srcdir)/macos $(srcdir)/win32 |
0 | 8 |
9 # Include the architecture-independent sources | |
10 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h | |
11 | |
12 # Include the architecture-specific sources | |
13 ARCH_SRCS = SDL_systimer.c | |
14 | |
15 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
16 | |
17 ## Let automake know that it shouldn't distribute linked sources | |
18 BUILT_SOURCES = $(ARCH_SRCS) | |
19 | |
20 ## Let automake know that it should remove these for distribution | |
21 DISTCLEANFILES = $(ARCH_SRCS) | |
22 | |
23 # The architecture specific directories need to be copied into place | |
24 # when building a distribution. | |
25 dist-hook: | |
26 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
27 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
28 (cd $(distdir) && rm -rf `find . -name CVS`) |