1
0
mirror of https://github.com/gryf/wmtemp.git synced 2026-03-15 06:03:38 +01:00

Added possibility to read config from file

This commit is contained in:
2016-07-03 08:45:55 +02:00
parent 53b145f044
commit 95550e120a
2 changed files with 264 additions and 108 deletions

View File

@@ -9,7 +9,7 @@ OBJ = $(SRC:.c=.o)
CFLAGS = -Wall -O3
LIB = -I/usr/include/NVCtrl/ -L/usr/X11R6/lib -lXpm -lXext -lX11 -lsensors -lXNVCtrl
LIB = -L/usr/X11R6/lib -lXpm -lXext -lX11
INSTALL = /usr/bin/install
@@ -19,7 +19,7 @@ all: $(OBJ)
$(CC) $(CFLAGS) -o $(EXE) $(OBJ) $(LIB)
strip $(EXE)
$(OBJ): %.o : %.c
$(OBJ): %.o : %.c
$(CC) $(CFLAGS) -c -o $@ $<
clean: