mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2026-09-27 03:16:33 -05:00
[Tools] Added the UdpDebugReader
by @dimok789
This commit is contained in:
12
tools/udp_debug_reader/Makefile
Normal file
12
tools/udp_debug_reader/Makefile
Normal 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 $@ $<
|
||||
Reference in New Issue
Block a user