aboutsummaryrefslogtreecommitdiff
path: root/src/Makeone
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makeone')
-rw-r--r--src/Makeone10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Makeone b/src/Makeone
new file mode 100644
index 00000000..d5ab84bb
--- /dev/null
+++ b/src/Makeone
@@ -0,0 +1,10 @@
+$(TARG): $(OFILES)
+ $(CC) -o $(TARG) $(OFILES) $(LDFLAGS)
+
+CLEANFILES+=$(TARG)
+
+include $(9SRC)/Makecommon
+
+install: $(TARG)
+ cp $(TARG) $(9SRC)/bin
+