mirror of
https://github.com/clockworkpi/uConsole.git
synced 2026-07-18 22:25:09 +02:00
15 lines
224 B
Makefile
15 lines
224 B
Makefile
CC=aarch64-linux-gnu-gcc
|
|
CFLAGS=-I.
|
|
DEPS =
|
|
OBJ = upload-reset/upload-reset.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
upload-reset.elf: $(OBJ)
|
|
$(CC) -o $@ $^ $(CFLAGS)
|
|
|
|
|
|
clean:
|
|
rm upload-reset/*.o upload-reset.elf
|