mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-29 08:21:18 +01:00
10 lines
94 B
Makefile
10 lines
94 B
Makefile
all: dose
|
|
|
|
dose: dose.c
|
|
$(CC) -O3 -Wall dose.c -o dose
|
|
|
|
clean:
|
|
rm -f dose
|
|
|
|
distclean: clean
|