mirror of https://github.com/encounter/SDL.git
fixes to Makefile.minimal
This commit is contained in:
parent
d1e6bd93d8
commit
2d1706069a
|
@ -5,9 +5,10 @@ CFLAGS = -g -O2 $(INCLUDE)
|
||||||
AR = ar
|
AR = ar
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
|
|
||||||
TARGET = libSDL.a
|
TARGET = libSDL2.a
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
src/*.c \
|
src/*.c \
|
||||||
|
src/atomic/*.c \
|
||||||
src/audio/*.c \
|
src/audio/*.c \
|
||||||
src/audio/dummy/*.c \
|
src/audio/dummy/*.c \
|
||||||
src/cpuinfo/*.c \
|
src/cpuinfo/*.c \
|
||||||
|
@ -30,11 +31,13 @@ SOURCES = \
|
||||||
src/sensor/*.c \
|
src/sensor/*.c \
|
||||||
src/sensor/dummy/*.c \
|
src/sensor/dummy/*.c \
|
||||||
src/stdlib/*.c \
|
src/stdlib/*.c \
|
||||||
|
src/libm/*.c \
|
||||||
src/thread/*.c \
|
src/thread/*.c \
|
||||||
src/thread/generic/*.c \
|
src/thread/generic/*.c \
|
||||||
src/timer/*.c \
|
src/timer/*.c \
|
||||||
src/timer/dummy/*.c \
|
src/timer/dummy/*.c \
|
||||||
src/video/*.c \
|
src/video/*.c \
|
||||||
|
src/video/yuv2rgb/*.c \
|
||||||
src/video/dummy/*.c \
|
src/video/dummy/*.c \
|
||||||
|
|
||||||
OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g')
|
OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g')
|
||||||
|
|
Loading…
Reference in New Issue