ginput/drivers/g-wolves/htx/Makefile

13 lines
376 B
Makefile
Raw Normal View History

2023-09-19 15:06:41 +02:00
CC=gcc
CFLAGS=$(shell pkg-config --cflags libusb-1.0) -O3 -Wall -shared
LDFLAGS=$(shell pkg-config --libs libusb-1.0)
BUILD_DIR=../../../build/
all: $(BUILD_DIR)/drivers/gwolves-htx.so
$(BUILD_DIR)/drivers/gwolves-htx.so: htx.c | $(BUILD_DIR)/drivers/
2023-09-25 10:33:24 +02:00
$(CC) $(CFLAGS) -o $@ $^
$(BUILD_DIR)/drivers/assets/gwolves-htx.png: htx_0.png | $(BUILD_DIR)/drivers/assets
cp $^ $@