1#
2#
3#  C++ Portable Types Library (PTypes)
4#  Version 2.1.1  Released 27-Jun-2007
5#
6#  Copyright (C) 2001-2007 Hovik Melikyan
7#
8#  http://www.melikyan.com/ptypes/
9#
10#
11#
12# Makefile for Linux, called from ../Makefile
13#
14
15CXX = g++
16
17OS_CXXOPTS_ST = -Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
18OS_CXXOPTS = $(OS_CXXOPTS_ST) -pthread -fPIC
19
20LIBTOOL = $(CXX) -shared -pthread
21SOSTRIP = strip
22
23SOEXT = so
24SOINSTOPT = -Xlinker -soname -Xlinker $(SOREALNAME)
25
26PREFIX = /usr
27
28include Makefile.common
29
30