summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <sokolyuk@gmail.com>2023-12-23 12:25:53 +0100
committerDimitri Sokolyuk <sokolyuk@gmail.com>2023-12-23 12:25:53 +0100
commitcefc3e08ffdbb70a6526ce510a622a28b855a9ab (patch)
treefa617201b826549a09bf6414a849ed02f870f8d0
parent3faeee797997a782555100dee54eada0025e2280 (diff)
Add regular makefile
-rw-r--r--Makefile10
-rw-r--r--Makefile.bsd-wrapper8
2 files changed, 10 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 2e53210..58e696e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,2 @@
-# $Id$
-
-PROG= snow
-NOMAN=
-DPADD= ${LIBCURSES}
-LDADD= -lcurses
-
-.include <bsd.prog.mk>
+snow: snow.c
+ $(CC) -o $@ $? -lcurses
diff --git a/Makefile.bsd-wrapper b/Makefile.bsd-wrapper
new file mode 100644
index 0000000..2e53210
--- /dev/null
+++ b/Makefile.bsd-wrapper
@@ -0,0 +1,8 @@
+# $Id$
+
+PROG= snow
+NOMAN=
+DPADD= ${LIBCURSES}
+LDADD= -lcurses
+
+.include <bsd.prog.mk>