From be0443e46891c010943573f65fa86a557562e036 Mon Sep 17 00:00:00 2001 From: tobid7 Date: Fri, 8 Mar 2024 16:39:04 +0100 Subject: [PATCH] # Removed # - submodule - Makefile - Dockerfile - Updated .gitignore for cmake support --- .gitignore | 6 +----- .gitmodules | 4 ---- Dockerfile | 11 ----------- Makefile | 39 --------------------------------------- buildtools | 1 - 5 files changed, 1 insertion(+), 60 deletions(-) delete mode 100644 .gitmodules delete mode 100644 Dockerfile delete mode 100644 Makefile delete mode 160000 buildtools diff --git a/.gitignore b/.gitignore index d2d3c66..8b1aab2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,2 @@ .idea -cmake-build-debug -CMakeLists.txt - -build -output +cmake-build-debug \ No newline at end of file diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 6cbc131..0000000 --- a/.gitmodules +++ /dev/null @@ -1,4 +0,0 @@ -[submodule "buildtools"] - path = buildtools - url = https://github.com/Steveice10/buildtools - shallow = true diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 4a13fd6..0000000 --- a/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -FROM ubuntu:18.04 - -RUN apt-get -y update && \ - apt-get -y install g++ \ - gcc \ - git \ - make \ - zip -COPY . /bannertool -WORKDIR /bannertool -CMD ["make"] diff --git a/Makefile b/Makefile deleted file mode 100644 index 78fffd1..0000000 --- a/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# TARGET # - -TARGET := NATIVE -LIBRARY := 0 - -ifeq ($(TARGET),$(filter $(TARGET),3DS WIIU)) - ifeq ($(strip $(DEVKITPRO)),) - $(error "Please set DEVKITPRO in your environment. export DEVKITPRO=devkitPro") - endif -endif - -# COMMON CONFIGURATION # - -NAME := bannertool - -BUILD_DIR := build -OUTPUT_DIR := output -INCLUDE_DIRS := include -SOURCE_DIRS := source - -EXTRA_OUTPUT_FILES := - -LIBRARY_DIRS := -LIBRARIES := - -BUILD_FLAGS := -Wno-unused-function -BUILD_FLAGS_CC := -BUILD_FLAGS_CXX := -RUN_FLAGS := - -VERSION_PARTS := $(subst ., ,$(shell git describe --tags --abbrev=0)) - -VERSION_MAJOR := $(word 1, $(VERSION_PARTS)) -VERSION_MINOR := $(word 2, $(VERSION_PARTS)) -VERSION_MICRO := $(word 3, $(VERSION_PARTS)) - -# INTERNAL # - -include buildtools/make_base diff --git a/buildtools b/buildtools deleted file mode 160000 index b7043ff..0000000 --- a/buildtools +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b7043ff1854be48ef0d055bba81b0a69a5bc892f