mirror of
				https://github.com/fail0verflow/bootmii-utils.git
				synced 2025-11-03 19:16:11 +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
 | 
						|
 |