# Removed #
- submodule - Makefile - Dockerfile - Updated .gitignore for cmake support
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,6 +1,2 @@
|
||||
.idea
|
||||
cmake-build-debug
|
||||
CMakeLists.txt
|
||||
|
||||
build
|
||||
output
|
||||
|
||||
4
.gitmodules
vendored
4
.gitmodules
vendored
@@ -1,4 +0,0 @@
|
||||
[submodule "buildtools"]
|
||||
path = buildtools
|
||||
url = https://github.com/Steveice10/buildtools
|
||||
shallow = true
|
||||
11
Dockerfile
11
Dockerfile
@@ -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"]
|
||||
39
Makefile
39
Makefile
@@ -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=<path to>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
|
||||
Submodule buildtools deleted from b7043ff185
Reference in New Issue
Block a user