Skip to content

Instantly share code, notes, and snippets.

@kalabiyau
Created December 16, 2011 12:32
Show Gist options
  • Save kalabiyau/1485876 to your computer and use it in GitHub Desktop.
Save kalabiyau/1485876 to your computer and use it in GitHub Desktop.
CC = gcc
CXX = g++
DEFINES = -DSKYPETABNG_LIBRARY -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED
CFLAGS = --target=i686-pc-linux -m32 -pipe -O2 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
CXXFLAGS = --target=i686-pc-linux -m32 -pipe -std=c++0x -O2 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
INCPATH = -I/usr/share/qt4/mkspecs/linux-g++-32 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I.
LINK = g++
LDFLAGS = --target=i686-pc-linux
LFLAGS = -m32 -Wl,-O1 -shared -Wl,-soname,libskypetab-ng.so.0
LIBS = $(SUBLIBS) -L/usr/lib32 -lQtGui -lQtCore -lpthread
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment