Mercurial > sdl-ios-xcode
comparison src/stdlib/Makefile.am @ 1330:450721ad5436
It's now possible to build SDL without any C runtime at all on Windows,
using Visual C++ 2005
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 06 Feb 2006 08:28:51 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1329:bc67bbf87818 | 1330:450721ad5436 |
---|---|
1 | |
2 ## Makefile.am for the SDL file library | |
3 | |
4 noinst_LTLIBRARIES = libstdlib.la | |
5 | |
6 # Include the architecture-independent sources | |
7 COMMON_SRCS = \ | |
8 SDL_getenv.c \ | |
9 SDL_malloc.c \ | |
10 SDL_qsort.c \ | |
11 SDL_stdlib.c \ | |
12 SDL_string.c | |
13 | |
14 libstdlib_la_SOURCES = $(COMMON_SRCS) | |
15 |