diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2013-11-03 20:03:38 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2013-11-03 20:03:38 -0500 |
commit | fc19d0675581c838a48ff9814e9480e6a5c6cc1a (patch) | |
tree | 63220b4a49e891237bf93359ad6f189e0354b028 /config.mk | |
parent | a1b95e3b22020aea94f10328767f0aa73cc198be (diff) | |
parent | 3377c7b1e766afb54949c0b2b758888e3de6ff86 (diff) |
Merge branch 'master' of https://github.com/mutantturkey/svte
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -16,9 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. - # svte version: -VERSION = 0.1.4.1 +VERSION = 0.1.4.2 # Customize below to fit your system @@ -28,20 +27,16 @@ MANPREFIX = ${PREFIX}/share/man # includes and libs - GTKINC=$(shell pkg-config --cflags gtk+-2.0 vte ) GTKLIB=-lvte INCS = -I. -I/usr/include ${GTKINC} LIBS = -L/usr/lib -lc ${GTKLIB} + # flags CPPFLAGS = -DVERSION=\"${VERSION}\" CFLAGS = -mtune=native -std=gnu99 -O3 ${INCS} ${CPPFLAGS} LDFLAGS = -s ${LIBS} -# Solaris -#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" -#LDFLAGS = ${LIBS} - # compiler and linker CC = cc |