(Makefile.common) Rearrange conditional

This commit is contained in:
twinaphex 2016-01-21 03:11:00 +01:00
parent fbd2e9aa84
commit f9e389ac56

View File

@ -478,9 +478,6 @@ ifeq ($(HAVE_COMMAND), 1)
OBJ += command.o
endif
ifeq ($(HAVE_NETWORK_GAMEPAD), 1)
OBJ += remote.o
endif
#Input
@ -892,6 +889,10 @@ ifeq ($(HAVE_NETWORKING), 1)
OBJ += cheevos.o libretro-common/utils/md5.o
endif
endif
ifeq ($(HAVE_NETWORK_GAMEPAD), 1)
OBJ += remote.o
endif
endif
ifneq ($(findstring Win32,$(OS)),)