mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
172 B
Makefile
12 lines
172 B
Makefile
all: fixdep
|
|
|
|
fixdep_patched.c: fixdep.c
|
|
patch $^ fixdep_riot.patch -o $@
|
|
|
|
fixdep: fixdep_patched.c
|
|
$(CC) -O3 -Wall $^ -o $@
|
|
|
|
clean:
|
|
$(RM) fixdep_patched.c
|
|
$(RM) fixdep
|