From b826fc6a245e746db978ca43df483906b6e95c38 Mon Sep 17 00:00:00 2001 From: Marcin Miklas Date: Wed, 12 May 2021 14:14:24 +0200 Subject: [PATCH 1/2] Ignore temporary files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 995d637..3760b3b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ doc/build +linux/build/obj From 754030292aa50bd2b88ca1fe8721749c75134253 Mon Sep 17 00:00:00 2001 From: Marcin Miklas Date: Tue, 28 Feb 2023 11:07:20 +0100 Subject: [PATCH 2/2] Use absolute paths in Makefile --- linux/build/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/build/Makefile b/linux/build/Makefile index 1e00b1a..31df0ca 100644 --- a/linux/build/Makefile +++ b/linux/build/Makefile @@ -49,8 +49,8 @@ endif CPPFLAGS_G = $(CFLAGS_G) -std=c++0x -Wnon-virtual-dtor LDFLAGS_G = -COMMON_DIR = ../../common -SRC_DIR = ../src +COMMON_DIR = $(abspath ../../common) +SRC_DIR = $(abspath ../src) OBJ_DIR = obj OBJ_FILES = $(OBJ_DIR)/ptp_message.o\