Changeset 849 in kBuild
- Timestamp:
- Feb 8, 2007 10:42:27 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/sdks/LIBSDL.kmk
r819 r849 37 37 else 38 38 # Search in the typical unix places. 39 PATH_SDK_LIBSDL := $(firstword $(wildcard \ 39 ifeq ($(filter-out %64,$(BUILD_TARGET_ARCH)),) 40 PATH_SDK_LIBSDL := $(firstword $(wildcard \ 41 /lib64/libSDL.* \ 40 42 /lib/libSDL.* \ 43 /usr/lib64/libSDL.* \ 41 44 /usr/lib/libSDL.* \ 45 /usr/local/lib64/libSDL.* \ 42 46 /usr/local/lib/libSDL.* \ 47 /opt/lib64/libSDL.* \ 43 48 /opt/lib/libSDL.* \ 49 /opt/local/lib64/libSDL.* \ 44 50 /opt/local/lib/libSDL.* \ 51 /sw/lib64/libSDL.* \ 45 52 /sw/lib/libSDL.* \ 46 53 ) ) 54 else 55 PATH_SDK_LIBSDL := $(firstword $(wildcard \ 56 /lib32/libSDL.* \ 57 /lib/libSDL.* \ 58 /usr/lib32/libSDL.* \ 59 /usr/lib/libSDL.* \ 60 /usr/local/lib32/libSDL.* \ 61 /usr/local/lib/libSDL.* \ 62 /opt/lib32/libSDL.* \ 63 /opt/lib/libSDL.* \ 64 /opt/local/lib32/libSDL.* \ 65 /opt/local/lib/libSDL.* \ 66 /sw/lib32/libSDL.* \ 67 /sw/lib/libSDL.* \ 68 ) ) 69 endif 47 70 ifneq ($(PATH_SDK_LIBSDL),) 48 71 PATH_SDK_LIBSDL := $(patsubst %/,%,$(dir $(patsubst %/,%,$(dir $(PATH_SDK_LIBSDL)))))
Note:
See TracChangeset
for help on using the changeset viewer.