mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
24 lines
533 B
Diff
24 lines
533 B
Diff
From e25f8860e73f9097ba613268644382d95902850c Mon Sep 17 00:00:00 2001
|
|
From: Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
Date: Thu, 31 Oct 2013 13:36:10 +0100
|
|
Subject: [PATCH 1/9] Add RIOT Makefile
|
|
|
|
---
|
|
Makefile | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
create mode 100644 Makefile
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
new file mode 100644
|
|
index 0000000..f424cf1
|
|
--- /dev/null
|
|
+++ b/Makefile
|
|
@@ -0,0 +1,4 @@
|
|
+MODULE:=$(shell basename $(CURDIR))
|
|
+CFLAGS += -DWITH_POSIX -D_GNU_SOURCE=1
|
|
+
|
|
+include $(RIOTBASE)/Makefile.base
|
|
--
|
|
2.15.1
|
|
|