1
0
Fork 0
mirror of https://github.com/quantum5/i3bgwin.git synced 2025-04-24 21:52:03 -04:00
i3bgwin/Makefile

10 lines
139 B
Makefile
Raw Normal View History

2019-12-15 00:22:35 -05:00
CC=gcc
CFLAGS=-std=c99 -Wall -Wextra
LDFLAGS=-s
LDLIBS=-lX11 -lXext
all: i3bgwin
i3bgwin: i3bgwin.o
$(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)