From 0639c55f16ca57e4ac14d71d6f9154a47e5b2fe6 Mon Sep 17 00:00:00 2001 From: Oleksii Shevchuk Date: Mon, 3 Apr 2017 23:34:46 +0300 Subject: [PATCH] Fix rebuild by dependencies --- client/sources-linux/Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/client/sources-linux/Makefile b/client/sources-linux/Makefile index e8382531..5103b5ea 100644 --- a/client/sources-linux/Makefile +++ b/client/sources-linux/Makefile @@ -18,8 +18,8 @@ else NAME := 86 endif -LINUX_INJECT_CFLAGS := -include debug.h -include fixes.h \ - -Dmain=linux_inject_main "-Drealpath=fakepath" +LINUX_INJECT_CFLAGS := -include fixes.h -include debug.h \ + -Dmain=linux_inject_main -Drealpath=fakepath ifneq ($(DEBUG),) DEBUG_ADD := -debug @@ -32,7 +32,6 @@ LDFLAGS += -O1 -Wl,-s -Wl,-x -Wl,--gc-sections -Wl,--no-undefined LDFLAGS += -Wl,-z,now -Wl,-z,combreloc -Wl,--enable-new-dtags endif - PYTHON ?= python TEMPLATE_OUTPUT_PATH ?= ../../pupy/payload_templates/ @@ -50,8 +49,8 @@ COMMON_OBJS += linux-inject/utils.o all: $(TEMPLATE_OUTPUT_PATH)/pupyx$(NAME).lin $(TEMPLATE_OUTPUT_PATH)/pupyx$(NAME).so -pupy.c: resources_library_compressed_string_txt.c -pupy_load.c: resources_bootloader_pyc.c resources_python27_so.c \ +pupy.o: resources_library_compressed_string_txt.c +pupy_load.o: resources_bootloader_pyc.c resources_python27_so.c \ resources_libssl_so.c resources_libcrypto_so.c import-tab.c import-tab.h: mktab.py @@ -71,7 +70,7 @@ resources_library_compressed_string_txt.c: ../gen_resource_header.py resources/l resources/library_compressed_string.txt $(XZARGS) resources/bootloader.pyc: ../gen_python_bootloader.py ../../pupy/packages/all/pupyimporter.py ../../pupy/pp.py - $(PYTHON) -OO $(PFLAGS) ../gen_python_bootloader.py $(DEBUG_ADD) + $(PYTHON) $(PFLAGS) ../gen_python_bootloader.py $(DEBUG_ADD) resources_bootloader_pyc.c: ../gen_resource_header.py resources/bootloader.pyc $(PYTHON) $(PFLAGS) $+ $(XZARGS)