Commit b6e50261 authored by Alexandre Julliard's avatar Alexandre Julliard

makefiles: Always use the global SOURCES variable for .in files.

parent c047bb6e
......@@ -3,18 +3,13 @@ UNIXLIB = wineandroid.so
IMPORTS = ntoskrnl
UNIX_LIBS = -lwin32u $(PTHREAD_LIBS)
C_SRCS = \
SOURCES = \
build.gradle.in \
device.c \
dllmain.c \
init.c \
keyboard.c \
opengl.c \
window.c
IN_SRCS = \
build.gradle.in
SVG_SRCS = \
window.c \
wine.svg
EXTRA_TARGETS = wine-debug.apk
PROGRAMS = \
make_xftmpl
C_SRCS = \
make_xftmpl.c
IN_SRCS = \
SOURCES = \
make_xftmpl.c \
wineapploader.in
......@@ -369,7 +369,8 @@ sub assign_sources_to_makefiles(@)
}
elsif ($name =~ /\.in$/)
{
push @{${$make}{"=IN_SRCS"}}, $name;
push @{${$make}{"=SOURCES"}}, $name;
next;
}
elsif ($name =~ /\.spec$/)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment