Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile: simplify - ii - irc it, simple FIFO based irc client
git clone git://git.suckless.org/ii
Log
Files
Refs
README
LICENSE
---
commit 0fedff44e3cf7d1f1edfb15f160320dcc6746bd8
parent bb1e5569d0b85c00f1dd78f31b5f2b5e9f2690a8
Author: Hiltjo Posthuma <[email protected]>
Date: Sat, 18 Nov 2017 12:28:30 +0100
Makefile: simplify
Diffstat:
M config.mk | 31 +++++++++++++----------------…
1 file changed, 13 insertions(+), 18 deletions(-)
---
diff --git a/config.mk b/config.mk
@@ -2,29 +2,24 @@
VERSION = 1.7
# paths
-PREFIX = /usr/local
-BINDIR = ${PREFIX}/bin
-MANDIR = ${PREFIX}/share/man
-MAN1DIR = ${MANDIR}/man1
-DOCDIR = ${PREFIX}/share/doc/ii
-
-# Set the following to install to a different root
-DESTDIR =
-
-INCDIR = ${PREFIX}/include
-LIBDIR = ${PREFIX}/lib
+PREFIX = /usr/local
+BINDIR = ${PREFIX}/bin
+MANDIR = ${PREFIX}/share/man
+MAN1DIR = ${MANDIR}/man1
+DOCDIR = ${PREFIX}/share/doc/ii
# includes and libs
-INCLUDES = -I. -I${INCDIR} -I/usr/include
-LIBS = -L${LIBDIR} -L/usr/lib -lc
+INCLUDES = -I. -I/usr/include
+LIBS =
# compiler
-CC = cc
+CC = cc
# debug
-#CFLAGS = -g -O0 -pedantic -Wall ${INCLUDES} -DVERSION=\"${VERSION}\" -st…
-#LDFLAGS = ${LIBS}
+#CFLAGS = -g -O0 -pedantic -Wall ${INCLUDES} -DVERSION=\"${VERSION}\" \
+# -std=c99 -D_DEFAULT_SOURCE
+#LDFLAGS = ${LIBS}
# release
-CFLAGS = -Os ${INCLUDES} -DVERSION=\"${VERSION}\" -std=c99 -D_DEFAULT_SOUR…
-LDFLAGS = -s
+CFLAGS = -Os ${INCLUDES} -DVERSION=\"${VERSION}\" -std=c99 -D_DEFAULT_SOURCE
+LDFLAGS = -s ${LIBS}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.