mirror of
https://github.com/clockworkpi/uConsole.git
synced 2026-07-17 21:54:49 +02:00
15 lines
206 B
Makefile
15 lines
206 B
Makefile
CC=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
|