aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-14 00:30:22 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-14 00:30:22 +0100
commit0e58074b7c698fc904236691c9624c902c3e9da2 (patch)
treeba4a5c4c78efeaeeb16150edfd5be153fce404bf /Makefile
parent89e4b0500237d4347e4a0d9854e1a1ce02f29588 (diff)
BSD makefile -- initial revision
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
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