sndlock/Makefile

11 lines
340 B
Makefile
Raw Normal View History

2024-12-26 12:33:11 +08:00
PROG= sndlock
2025-01-19 18:22:51 +08:00
SRCS= imgui_impl_glfw.cpp imgui_impl_opengl3.cpp imgui_draw.cpp imgui_widgets.cpp imgui_tables.cpp imgui.cpp kirdy.cpp sndlock.cpp
2025-01-19 19:29:24 +08:00
CXXOPTS= -Wall `pkg-config --cflags glfw3 gl asio jsoncpp`
LDFLAGS= `pkg-config --libs glfw3 gl asio jsoncpp`
LDADD= -lsndio -lm
2024-12-26 11:48:03 +08:00
2024-12-26 12:33:11 +08:00
BINDIR= /usr/local/bin
NOMAN= noman
2024-12-26 11:48:03 +08:00
.include <bsd.prog.mk>