diff options
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e3c915 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +# Makefile for use with BSD 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 |