diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-09 13:35:03 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-09 13:35:03 +0100 |
commit | 95be538a932ad869332264be0633d17f34e11ccd (patch) | |
tree | 2569a68ba8c9da12ab5720d71898308e75435924 /GNUmakefile | |
parent | 2778ba9a7ce04503a0a4dc4f542d3979827ea874 (diff) |
Added new makefiles
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..96c3795 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,19 @@ +# Makefile for use with GNU make +# SPDX-FileCopyrightText: 2023 Markus Uhlin <maxxe@rpblc.net> +# SPDX-License-Identifier: ISC + +include options.mk + +# common vars +include vars.mk + +all: $(TGTS) + +include FICS/build.mk + +# common rules +include common.mk + +.PHONY: clean + +include $(TARGETS_DIR)clean.mk |