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 ...@@ -3,18 +3,13 @@ UNIXLIB = wineandroid.so
IMPORTS = ntoskrnl IMPORTS = ntoskrnl
UNIX_LIBS = -lwin32u $(PTHREAD_LIBS) UNIX_LIBS = -lwin32u $(PTHREAD_LIBS)
C_SRCS = \ SOURCES = \
build.gradle.in \
device.c \ device.c \
dllmain.c \ dllmain.c \
init.c \ init.c \
keyboard.c \ keyboard.c \
opengl.c \ opengl.c \
window.c window.c \
IN_SRCS = \
build.gradle.in
SVG_SRCS = \
wine.svg wine.svg
EXTRA_TARGETS = wine-debug.apk EXTRA_TARGETS = wine-debug.apk
PROGRAMS = \ PROGRAMS = \
make_xftmpl make_xftmpl
C_SRCS = \ SOURCES = \
make_xftmpl.c make_xftmpl.c \
IN_SRCS = \
wineapploader.in wineapploader.in
...@@ -369,7 +369,8 @@ sub assign_sources_to_makefiles(@) ...@@ -369,7 +369,8 @@ sub assign_sources_to_makefiles(@)
} }
elsif ($name =~ /\.in$/) elsif ($name =~ /\.in$/)
{ {
push @{${$make}{"=IN_SRCS"}}, $name; push @{${$make}{"=SOURCES"}}, $name;
next;
} }
elsif ($name =~ /\.spec$/) 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