mirror of
https://github.com/fail0verflow/bootmii-utils.git
synced 2024-11-22 10:29:14 +01:00
20 lines
251 B
Makefile
20 lines
251 B
Makefile
#USE_LIBFTDI = 1
|
|
|
|
CFLAGS = -Wall -W -Os -g
|
|
TARGET = bootmii
|
|
OBJS = gecko.o main.o
|
|
LIBS =
|
|
|
|
NOMAPFILE = 1
|
|
|
|
ifeq ($(USE_LIBFTDI),1)
|
|
CFLAGS += -DUSE_LIBFTDI
|
|
LIBS += -lftdi
|
|
endif
|
|
|
|
include ../common.mk
|
|
|
|
install: all
|
|
install -m 755 $(TARGET) $(WIIDEV)/bin
|
|
|