diff options
| author | Quentin Rameau <quinq@fifth.space> | 2016-01-02 19:11:31 +0100 |
|---|---|---|
| committer | Christoph Lohmann <20h@r-36.net> | 2016-01-03 09:24:32 +0100 |
| commit | 46887ac5505076f3a3907e3fd4a5e3ec00f29d63 (patch) | |
| tree | 07967b4b7b25c5f9de3bc772a29a796f66ba6c55 /config.mk | |
| parent | df8261e89f7e98c822328d8f261c46fa55f3cf86 (diff) | |
| download | tabbed-46887ac5505076f3a3907e3fd4a5e3ec00f29d63.tar.gz | |
Fix install paths and default build flag
Ensure that paths are quoted.
Compile with -Os by default.
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ LIBS = -L/usr/lib -lc -lX11 # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} LDFLAGS = -s ${LIBS} # Solaris |