aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-07-19 10:31:23 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-07-19 10:31:23 -0300
commit3db31ccb7149b1d45317786df37e26d5232125dd (patch)
treeabe67015622898f20ab094368af902812b4fae12 /Makefile
parent083a41a2c2cdf7fe5d8299e12c443683c6790a2b (diff)
downloadfirefoxer-3db31ccb7149b1d45317786df37e26d5232125dd.tar.gz
firefoxer-3db31ccb7149b1d45317786df37e26d5232125dd.tar.bz2
Populate
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 4f0db17..0000000
--- a/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-#
-# Global Makefile - https://templater.fluxo.info
-#
-# This Makefile contains basic, common targets and also includes
-# any Makefile.* available in the current folder.
-#
-
-# Set CONTAINER based in what we have available in the system
-# This variable can be user in other, included Makefiles to handle virtualization tasks
-ifeq ($(shell which kvmx > /dev/null && test -s kvmxfile && echo yes), yes)
- CONTAINER = kvmx
-else ifeq ($(shell which vagrant > /dev/null && test -s Vagrantfile && echo yes), yes)
- CONTAINER = vagrant
-else ifeq ($(shell which docker > /dev/null && test -s Dockerfile && echo yes), yes)
- CONTAINER = docker
-else
- CONTAINER = ''
-endif
-
-# Default action
-default: all
-
-# Process any other Makefile whose filename matches Makefile.*
-# See https://www.gnu.org/software/make/manual/html_node/Include.html
-#
-# Some of those files might even contain local customizations/overrides
-# that can be .gitignore'd, like a Makefile.local for example.
--include Makefile.*
-
-# Customization examples can be as simple as setting variables:
-#CONTAINER = vagrant
-#CONTAINER = docker
-#DESTDIR ?= vendor
-#HTTP_PORT ="8080"
-#HTTP_SERVER ="ssi_server"