From d53109eaa890ab807b66961a89291cea3cd3c003 Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Tue, 18 Aug 2020 23:58:16 +0200 Subject: first part of a proper lutris implementation and cleanup - remove all old build platform related variables - change behavior of clean - change tabs into spaces - make XDG fetching method static - replace strcpy and cat with strn alternative with proper bounds checking - add cache dir - reenable dxvk and download from ram - completely rework lutris fetching and convert it into an interal struct - only show http errors in debug - add sanity checks to methods with possible NULL return - change extracting methods to extract tar from ram --- Makefile | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7bef6be..0a1ec18 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # GENERAL VARIABLES NAME := polecat -VERSION := 0.1.3 +VERSION := 0.1.4 TARGET ?= debug DEBUG := 0 ifeq ($(TARGET),debug) @@ -17,15 +17,8 @@ CROSS ?= RM := rm -rf MKDIR := mkdir -p DOXYGEN := doxygen -PKGCONFIG := $(CROSS)pkg-config -CURLCONFIG := $(CROSS)curl-config - - -ifndef PLATFORM - PLATFORM := $(HOSTPLATFORM) -endif - -# CROSS COMPILATION ADAPTION +PKGCONFIG := ${CROSS}pkg-config +CURLCONFIG := ${CROSS}curl-config # DIRECTORIES BIN_DIR := bin @@ -78,7 +71,7 @@ $(OBJ_DIR)/$(TARGET)/%.o: $(SRC_DIR)/%.c | $(OBJ_DIR)/$(TARGET) ${RECIPE_IF} ${CROSS}${CC} -c -o$@ $< ${CFLAGS} ${DEFINES} ${RECIPE_RESULT_COMPILE} clean: - ${RM} ${BIN_DIR} ${OBJ_DIR} ${NAME}.tar 2> /dev/null + ${RM} ${BIN_DIR} ${OBJ_DIR} 2> /dev/null loc: -find ${SRC_DIR} ${INC_DIR} -name '*.cpp' -o -name '*.c' -o -name '*.h' -o -name '*.hpp' -type f | xargs wc -l @@ -86,6 +79,8 @@ loc: tar: ${NAME}.tar dist: tar +distclean: + ${RM} ${NAME}.tar 2> /dev/null ${NAME}.tar: ${ARCHIVE_STATUS} -- cgit v1.2.3