[Mirmince-commits] {tests} branch master updated. 0aa0413552950a0cc350e6f0ccdeb5408d15587a
tg at freewrt.org
tg at freewrt.org
Sun Jan 6 23:44:30 UTC 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Supplemental git repository tests for FreeWRT project mirmince".
The branch, master has been updated
via 0aa0413552950a0cc350e6f0ccdeb5408d15587a (commit)
from 9aa362ffb8362bbd641ad926531bf7c1ac2152b9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0aa0413552950a0cc350e6f0ccdeb5408d15587a
Author: Thorsten Glaser <tg at mirbsd.org>
Date: Sun Jan 6 23:30:19 2013 +0000
got the first hello-world program working!
-----------------------------------------------------------------------
Summary of changes:
BSDmakefile | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
create mode 100644 BSDmakefile
diff --git a/BSDmakefile b/BSDmakefile
new file mode 100644
index 0000000..1198109
--- /dev/null
+++ b/BSDmakefile
@@ -0,0 +1,63 @@
+# Copyright © 2013
+# Thorsten Glaser <tg at mirbsd.org>
+#
+# Provided that these terms and disclaimer and all copyright notices
+# are retained or reproduced in an accompanying document, permission
+# is granted to deal in this work without restriction, including un‐
+# limited rights to use, publicly perform, distribute, sell, modify,
+# merge, give away, or sublicence.
+#
+# This work is provided “AS IS” and WITHOUT WARRANTY of any kind, to
+# the utmost extent permitted by applicable law, neither express nor
+# implied; without malicious intent or gross negligence. In no event
+# may a licensor, author or contributor be held liable for indirect,
+# direct, other damage, loss, or other issues arising in any way out
+# of dealing in the work, even if advised of the possibility of such
+# damage or existence of a defect, except proven that it results out
+# of said person’s immediate fault when using the work as intended.
+#-
+# Top-level Makefile for mirₘᵢₙcⒺ/tests (experimental)
+
+# settings (will change later)
+DST= /opt/mirmince
+
+# not settings
+SHELL= /bin/mksh
+LIBCDIR= ${.CURDIR/..}
+CC:= ${DST:Q}/bin/cc
+
+.if defined(V) && $V > 0
+CC+= -v
+.endif
+
+all:
+
+PROGS+= hw-unix
+CLEANFILES+= hw-unix.out
+
+CPPFLAGS:=
+CFLAGS:=
+AFLAGS:=
+LDFLAGS:=
+LDADD:=
+
+.SUFFIXES: .a .o .S .i .c .h
+.LIBS: .a
+
+COMPILE.S:= ${CC} -D_ASM_SOURCE ${CPPFLAGS} ${AFLAGS} -c
+COMPILE.c:= ${CC} ${CPPFLAGS} ${CFLAGS} -c
+LINK.c:= ${CC} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}
+
+.o:
+ ${LINK.c} -o $@ ${.IMPSRC} ${LDADD}
+.S.o:
+ ${COMPILE.S} ${AFLAGS_${.TARGET:T:R}:M*} ${.IMPSRC}
+.c.o:
+ ${COMPILE.c} ${CFLAGS_${.TARGET:T:R}:M*} ${.IMPSRC}
+.c.i:
+ ${COMPILE.c} ${CFLAGS_${.TARGET:T:R}:M*} ${.IMPSRC} -E -o $@
+
+all: ${PROGS}
+
+clean:
+ rm -f ${PROGS} ${PROGS:=.o} ${CLEANFILES}
hooks/post-receive
--
Supplemental git repository tests for FreeWRT project mirmince
(FreeWRT project mirmince repository tests)
More information about the Mirmince-commits
mailing list