mirror of https://github.com/xemu-project/xemu.git
Add SDL flags and libs to objects which use it
This commit is contained in:
parent
50c0e6a45d
commit
67500be6e6
|
@ -10,3 +10,6 @@ obj-y += chihiro-usb.o
|
||||||
|
|
||||||
obj-y += dsp/
|
obj-y += dsp/
|
||||||
obj-y += nv2a/
|
obj-y += nv2a/
|
||||||
|
|
||||||
|
xid-sdl.o-cflags := $(SDL_CFLAGS)
|
||||||
|
xid-sdl.o-libs := $(SDL_LIBS)
|
||||||
|
|
|
@ -1 +1,5 @@
|
||||||
obj-y += dsp.o dsp_cpu.o dsp_dma.o
|
obj-y += dsp.o dsp_cpu.o dsp_dma.o
|
||||||
|
|
||||||
|
# dsp_cpu.c uses SDL_GetTicks()
|
||||||
|
dsp_cpu.o-cflags := $(SDL_CFLAGS)
|
||||||
|
dsp_cpu.o-libs := $(SDL_LIBS)
|
||||||
|
|
Loading…
Reference in New Issue