1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/microcoap/patches/0002-Add-RIOT-Makefile.patch
Patrick Grosse a7043f1eb2 pkg: microcoap: bump version (ef27289, Feb 5 2016)
* Latest version contains more CoAP content types
* More comments
* Small bugfixes
2017-03-30 13:50:12 +02:00

41 lines
781 B
Diff

From 021e6371d6915126cf0e9cf7556b9b4a6f3ae14f Mon Sep 17 00:00:00 2001
From: Patrick Grosse <patrick.grosse@uni-muenster.de>
Date: Sat, 25 Mar 2017 10:33:22 +0100
Subject: [PATCH 2/6] Add RIOT Makefile
---
Makefile | 23 +----------------------
1 file changed, 1 insertion(+), 22 deletions(-)
diff --git a/Makefile b/Makefile
index 19175d2..48422e9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1 @@
-CFLAGS += -Wall -DDEBUG
-# -DIPV6
-SRC = $(wildcard *.c)
-OBJ = $(SRC:%.c=%.o)
-DEPS = $(SRC:%.c=%.d)
-EXEC = coap
-
-all: $(EXEC)
-
--include $(DEPS)
-
-$(EXEC): $(OBJ)
- @$(CC) $(CFLAGS) -o $@ $^
-
-%.o: %.c %.d
- @$(CC) -c $(CFLAGS) -o $@ $<
-
-%.d: %.c
- @$(CC) -MM $(CFLAGS) $< > $@
-
-clean:
- @$(RM) $(EXEC) $(OBJ) $(DEPS)
+include $(RIOTBASE)/Makefile.base
--
2.7.4