diff options
author | Thore Bödecker <me@foxxx0.de> | 2018-08-21 09:02:05 +0200 |
---|---|---|
committer | Chris Down <chris@chrisdown.name> | 2018-08-21 15:33:25 -0400 |
commit | 18a36bc57c77e88b684da0485510fd69ae47b593 (patch) | |
tree | 25ef7ecc96e2ba780b2e8c7e338d942a8da7cfaa | |
parent | 9cb223fbe494c5b71678a9eae704c21a97e3bddd (diff) | |
download | clipbuzz-18a36bc57c77e88b684da0485510fd69ae47b593.tar.gz |
add CFLAGS and LDFLAGS to Makefile 1.0.1
Signed-off-by: Thore Bödecker <me@foxxx0.de>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 0fd72f1..0324d07 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,2 @@ all: - ${CC} clipnotify.c -o clipnotify -lX11 -lXfixes + ${CC} ${CFLAGS} ${LDFLAGS} clipnotify.c -o clipnotify -lX11 -lXfixes |