summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/windows/makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/windows/makefile b/src/windows/makefile
new file mode 100644
index 000000000..3ac5a7f02
--- /dev/null
+++ b/src/windows/makefile
@@ -0,0 +1,15 @@
+#
+# Makefile that recurses into cns subdirectory.
+#
+all::
+ @echo Making in windows\cns
+ cd cns
+ -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD)
+ cd ..
+
+clean::
+ @echo Making clean in windows\cns
+ cd cns
+ -$(MAKE) -$(MAKEFLAGS) clean
+ cd ..
+