bringed back the old config.mk
This commit is contained in:
parent
a66b73f5f2
commit
b9b6486cda
1 changed files with 19 additions and 0 deletions
19
config.mk
Normal file
19
config.mk
Normal file
|
@ -0,0 +1,19 @@
|
|||
VERSION = 1.0
|
||||
|
||||
PREFIX = /usr/local
|
||||
MANPREFIX = ${PREFIX}/share/man
|
||||
|
||||
X11INC = /usr/X11R6/include
|
||||
X11LIB = /usr/X11R6/lib
|
||||
|
||||
INCS = -I. -I/usr/include -I${X11INC}
|
||||
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound
|
||||
|
||||
# flags
|
||||
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
|
||||
CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS}
|
||||
LDFLAGS = ${LIBS}
|
||||
|
||||
CC = cc
|
||||
LD = ld
|
||||
|
Loading…
Reference in a new issue