--- huskymak.cfg.orig 2003-06-21 09:50:44 +0300 +++ huskymak.cfg 2005-07-04 02:57:51 +0300 @@ -8,7 +8,7 @@ # Prefix for all directories # Set to your homedir if you have no root privilegies -PREFIX=/usr/local +PREFIX=/usr # Where libraries (both .a and .so files) should be placed # You should take care that this directory is listed in the LD_LIBRARY_PATH @@ -19,14 +19,14 @@ BINDIR=$(PREFIX)/bin # Where manual pages should be placed. -MANDIR=$(PREFIX)/man +MANDIR=$(PREFIX)/share/man # Where include files should be placed (don't worry, no files will be over- # written, Husky will use its own subdirectories below this directory): INCDIR=$(PREFIX)/include # The fidoconfig config file will be in this DIRECTORY: -CFGDIR=$(PREFIX)/etc/fido +CFGDIR=/etc/ftn/husky/ # Filename (without path) for the config file (default: config) #CFGNAME=config @@ -46,7 +46,7 @@ # The same as above, but for HTML documentation. This requires a working # "texi2html" program. -#HTMLDIR=$(PREFIX)/lib/husky +HTMLDIR=$(PREFIX)/share/doc/husky # Name of the config file of MSGED TE: MSGEDCFG=\"$(CFGDIR)/msged.cfg\" @@ -116,7 +116,7 @@ # update dynamic library cache # If your operating system does not need this, you may comment out this line. -LDCONFIG=/sbin/ldconfig +#LDCONFIG=/sbin/ldconfig # rename a file MV=mv @@ -151,10 +151,10 @@ SHORTNAMES=0 # Perl support -PERL=0 +PERL=1 # ZipInternal packer -USE_HPTZIP=0 +USE_HPTZIP=1 # The DYNLIBS switch controls if dynamic or static linkage is used. # This is tricky. If you set DYNLIBS=1, dynamic libraries (.so files) @@ -176,10 +176,10 @@ EXENAMEFLAG=-o # C-compiler: generate warnings -WARNFLAGS=-Wall +WARNFLAGS= # C-compiler: optimization -OPTCFLAGS=-c -s -O3 -fomit-frame-pointer -fstrength-reduce -fPIC +OPTCFLAGS=-c $(RPM_OPT_FLAGS) -fPIC ifeq ( $(DYNLIBS), 0 ) ifeq ($(OSTYPE), UNIX) @@ -259,18 +259,23 @@ # extension of executable (e.g. ".exe") _EXE= +EXE= # extension of object file _OBJ=.o +OBJ=.o # extension of static libs _LIB=.a +LIB=.a # extension of dynamic libs _DLL=.so +DLL=.so # extension of compiled pascal units _TPU=.ppu +TPU=.ppu # directory separator (DOS-like: "\\", Unix-like: "/")