forked from extern/nix-config
18 lines
212 B
Makefile
18 lines
212 B
Makefile
|
CC=gcc
|
||
|
CFLAGS=-O2
|
||
|
|
||
|
LIBS=-lX11
|
||
|
OBJ=main.o xeb_handler.o
|
||
|
|
||
|
.PHONY: all clean
|
||
|
all: xeventbind
|
||
|
|
||
|
xeventbind: $(OBJ)
|
||
|
$(CC) -o $@ $^ $(LIBS) $(CFLAGS)
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) -c -o $@ $< $(CLAGS)
|
||
|
|
||
|
clean:
|
||
|
rm -f xeventbind *.o
|