[Tools] Added the UdpDebugReader

by @dimok789
This commit is contained in:
Maschell
2018-02-04 10:40:20 +01:00
parent 1299a3cb50
commit 2836b3e45f
15 changed files with 1745 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
CC=gcc
CFLAGS=-c -Wall
LDFLAGS=
SOURCES:= $(wildcard source/*.c)
OBJ_FILES = $(patsubst source/%.c,obj/%.o,$(SOURCES))
EXECUTABLE=UdpDebugReader
$(EXECUTABLE): $(OBJ_FILES)
$(CC) $(LDFLAGS) -o $@ $^
obj/%.o: source/%.c
mkdir obj; $(CC) $(CFLAGS) -c -o $@ $<