14 lines
		
	
	
		
			536 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			536 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CC=gcc
 | 
						|
CFLAGS=$(shell pkg-config --cflags libusb-1.0) -O3 -Wall -shared
 | 
						|
LDFLAGS=$(shell pkg-config --libs libusb-1.0)
 | 
						|
 | 
						|
FINAL_ASSETS=$(BUILD_DIR)/drivers/assets/gwolves-htx.png $(BUILD_DIR)/drivers/assets/gwolves-hts_plus.png $(BUILD_DIR)/drivers/assets/gwolves-hsk_pro.png
 | 
						|
BUILD_DIR=../../build/
 | 
						|
 | 
						|
all: $(BUILD_DIR)/drivers/g-wolves.so $(FINAL_ASSETS)
 | 
						|
 | 
						|
$(BUILD_DIR)/drivers/g-wolves.so: g-wolves.c | $(BUILD_DIR)/drivers/
 | 
						|
	$(CC) $(CFLAGS) -o $@ $^
 | 
						|
$(BUILD_DIR)/drivers/assets/%.png: devices/%.png | $(BUILD_DIR)/drivers/assets
 | 
						|
	cp $^ $@
 |