mirror of
https://github.com/fail0verflow/bootmii-utils.git
synced 2024-11-26 04:04:15 +01:00
12 lines
156 B
Makefile
12 lines
156 B
Makefile
|
CFLAGS = -Wall -W -Os -g
|
||
|
TARGET = bootmii
|
||
|
OBJS = gecko.o main.o
|
||
|
|
||
|
NOMAPFILE = 1
|
||
|
|
||
|
include ../common.mk
|
||
|
|
||
|
install: all
|
||
|
install -m 755 $(TARGET) $(WIIDEV)/bin
|
||
|
|