Rework Makefile, add config.def.h as default config
This commit is contained in:
parent
b2fad7cd38
commit
7dfc1c9668
4 changed files with 45 additions and 13 deletions
24
Makefile
Normal file
24
Makefile
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
CFLAGS = -Wall -Wextra -pedantic -lX11 -lXft -I/usr/include/freetype2 -lm -pthread
|
||||||
|
|
||||||
|
PREFIX ?= /usr/local
|
||||||
|
CC ?= cc
|
||||||
|
|
||||||
|
all: herbe
|
||||||
|
|
||||||
|
config.h: config.def.h
|
||||||
|
cp config.def.h config.h
|
||||||
|
|
||||||
|
herbe: herbe.c config.h
|
||||||
|
$(CC) herbe.c $(CFLAGS) -o herbe
|
||||||
|
|
||||||
|
install: herbe
|
||||||
|
mkdir -p ${DESTDIR}${PREFIX}/bin
|
||||||
|
cp -f herbe ${DESTDIR}${PREFIX}/bin
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
rm -f ${DESTDIR}${PREFIX}/bin/herbe
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f herbe
|
||||||
|
|
||||||
|
.PHONY: all install uninstall clean
|
19
config.def.h
Normal file
19
config.def.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
static const char *background_color = "#3e3e3e";
|
||||||
|
static const char *border_color = "#ececec";
|
||||||
|
static const char *font_color = "#ececec";
|
||||||
|
static const char *font_pattern = "Inconsolata:style=Medium:size=12";
|
||||||
|
static const unsigned line_spacing = 5;
|
||||||
|
static const unsigned int padding = 15;
|
||||||
|
|
||||||
|
static const unsigned int width = 450;
|
||||||
|
static const unsigned int border_size = 2;
|
||||||
|
static const unsigned int pos_x = 30;
|
||||||
|
static const unsigned int pos_y = 60;
|
||||||
|
|
||||||
|
enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
|
||||||
|
enum corners corner = TOP_RIGHT;
|
||||||
|
|
||||||
|
static const unsigned int duration = 5; /* in seconds */
|
||||||
|
|
||||||
|
#define DISMISS_BUTTON Button1
|
||||||
|
#define ACTION_BUTTON Button3
|
4
config.h
4
config.h
|
@ -1,4 +1,4 @@
|
||||||
static const char *background_color = "#3e3e3e";
|
static const char *background_color = "#0000FF";
|
||||||
static const char *border_color = "#ececec";
|
static const char *border_color = "#ececec";
|
||||||
static const char *font_color = "#ececec";
|
static const char *font_color = "#ececec";
|
||||||
static const char *font_pattern = "Inconsolata:style=Medium:size=12";
|
static const char *font_pattern = "Inconsolata:style=Medium:size=12";
|
||||||
|
@ -16,4 +16,4 @@ enum corners corner = TOP_RIGHT;
|
||||||
static const unsigned int duration = 5; /* in seconds */
|
static const unsigned int duration = 5; /* in seconds */
|
||||||
|
|
||||||
#define DISMISS_BUTTON Button1
|
#define DISMISS_BUTTON Button1
|
||||||
#define ACTION_BUTTON Button3
|
#define ACTION_BUTTON Button3
|
||||||
|
|
11
makefile
11
makefile
|
@ -1,11 +0,0 @@
|
||||||
default:
|
|
||||||
gcc herbe.c -Wall -Wextra -pedantic -lX11 -lXft -I/usr/include/freetype2 -lm -pthread -o herbe
|
|
||||||
|
|
||||||
install: default
|
|
||||||
cp herbe /usr/local/bin
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
rm /usr/local/bin/herbe
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f herbe
|
|
Loading…
Add table
Add a link
Reference in a new issue