.gitignore and Makefile update.
This commit is contained in:
parent
9a49f50bc0
commit
20775b82e0
2 changed files with 5 additions and 6 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -2,6 +2,9 @@ local/
|
|||
spacetray
|
||||
*~
|
||||
|
||||
# CLion
|
||||
.idea/
|
||||
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
|
|
|
|||
8
Makefile
8
Makefile
|
|
@ -1,12 +1,8 @@
|
|||
|
||||
all: spacetray
|
||||
|
||||
spacetray: spacetray.c
|
||||
all:
|
||||
$(CC) -Wall -g `pkg-config --cflags --libs gtk+-2.0 --libs libcurl --libs json-c --libs libnotify` -DLIBNOTIFY -o spacetray spacetray.c
|
||||
|
||||
nonotify: spacetray.c
|
||||
nonotify:
|
||||
$(CC) -Wall -g `pkg-config --cflags --libs gtk+-2.0 --libs libcurl --libs json-c` -o spacetray spacetray.c
|
||||
|
||||
clean:
|
||||
rm -f spacetray
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue