From 4320edc924a303ce0cab0000a5f16f045a3822df Mon Sep 17 00:00:00 2001 From: jahoti Date: Sun, 10 Oct 2021 00:00:00 +0000 Subject: Add a configuration system --- Makefile | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile deleted file mode 100644 index fc752e9..0000000 --- a/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# This file is part of Haketilo -# -# Copyright (C) 2021, Wojtek Kosior -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the CC0 1.0 Universal License as published by -# the Creative Commons Corporation. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# CC0 1.0 Universal License for more details. - -SHELL = /bin/sh -UPDATE_URL = -default_target = all -srcdir = . - -# The default target: placed up here -default: $(default_target) - -.PHONY: clean mozilla chromium \ - all build_all build_all.zip all_zip \ - default build zip - -all: mozilla chromium -mozilla: build_mozilla build_mozilla.zip -chromium: build_chromium build_chromium.zip - -build: build_$(default_target) -build_all: build_mozilla build_chromium - -zip: build_$(default_target).zip -all_zip: build_mozilla.zip build_chromium.zip -build_all.zip: all_zip - -build_%: - $(srcdir)/build.sh $* $(srcdir) $(UPDATE_URL) - -build_%.zip: build_% - cd $< && zip -q -r ../$@ * - -clean: - rm -rf build_mozilla build_chromium - rm -f build_mozilla.zip build_chromium.zip -- cgit v1.2.3