# This file contains everything that autoconf guessed for your system.
# if you want you can edit it, just don't re-run configure.

# C++ compiler options
CC            = gcc
CPPFLAGS     +=  -DHAVE_CONFIG_H -D_REENTRANT
CXX           = c++
CXXFLAGS     += -g -O2

# Linker stuff
PICFLAGS     += -fPIC -DPIC
LFLAGS       += 
LEFLAGS      += 

# Dep generation - this only works for gnu stuff
INLINEDEPFLAG = -MD

# Various library checks
GPMLIB        = 
APTPKGLIB     = -lapt-pkg
CURSESLIB     = -lncurses

# Shared library things
HOST_OS       = @host_os@

ifeq ($(HOST_OS),linux-gnu)
   SONAME_MAGIC=-Wl,-soname -Wl,
   LFLAGS_SO=
else   
   # Do not know how to creat shared libraries here.
   ONLYSTATICLIBS = yes
endif
	
