summaryrefslogtreecommitdiff
path: root/core/prefix.mak
diff options
context:
space:
mode:
Diffstat (limited to 'core/prefix.mak')
-rw-r--r--core/prefix.mak34
1 files changed, 0 insertions, 34 deletions
diff --git a/core/prefix.mak b/core/prefix.mak
deleted file mode 100644
index 622f1d594..000000000
--- a/core/prefix.mak
+++ /dev/null
@@ -1,34 +0,0 @@
-# prefix makefile
-
-# include project
-include $(PRO_DIR)/project.mak
-
-# the temporary directory
-ifeq ($(TMPDIR),)
-TMP_DIR :=$(if $(TMP_DIR),$(TMP_DIR),/tmp)
-else
-# for termux
-TMP_DIR :=$(if $(TMP_DIR),$(TMP_DIR),$(TMPDIR))
-endif
-
-# the source directory
-SRC_DIR = $(PRO_DIR)/src
-
-# the binary directory
-BIN_DIR = $(PRO_DIR)/bin
-
-# the platform directory
-PLAT_DIR = $(PRO_DIR)/plat/$(PLAT)
-
-# the tool directory
-TOOL_DIR = $(PRO_DIR)/tool
-
-# the default include directory
-INC_DIRS = $(PRO_DIR)
-
-# the config file path
-CFG_FILE = $(PRO_DIR)/$(PRO_NAME).config.h
-
-# include platform prefix
--include $(PLAT_DIR)/prefix.mak
-