diff options
-rw-r--r-- | Makefile | 13 | ||||
-rw-r--r-- | config.mk | 12 |
2 files changed, 12 insertions, 13 deletions
@@ -1,4 +1,15 @@ -include config.mk +# expac - an alpm data dump tool +VERSION = $(shell git describe --always) + +# paths +PREFIX ?= /usr/local +MANPREFIX ?= ${PREFIX}/share/man + +# compiler flags +CC ?= gcc +CPPFLAGS += -DVERSION=\"${VERSION}\" +CFLAGS += -std=c99 -g -pedantic -Wall -Wextra -Werror ${CPPFLAGS} +LDFLAGS += -lalpm SRC = expac.c OBJ = ${SRC:.c=.o} diff --git a/config.mk b/config.mk deleted file mode 100644 index 3a90cd4..0000000 --- a/config.mk +++ /dev/null @@ -1,12 +0,0 @@ -# version -VERSION = $(shell git describe --always) - -# paths -PREFIX ?= /usr/local -MANPREFIX ?= ${PREFIX}/share/man - -# compiler flags -CC ?= gcc -CPPFLAGS += -DVERSION=\"${VERSION}\" -CFLAGS += -std=c99 -g -pedantic -Wall -Wextra -Werror ${CPPFLAGS} -LDFLAGS += -lalpm |