Index: unk/psLib/src/Makefile.Globals~
===================================================================
--- /trunk/psLib/src/Makefile.Globals~	(revision 546)
+++ 	(revision )
@@ -1,58 +1,0 @@
-ifndef OSTYPE
-  OSTYPE:=$(shell uname -s)
-endif
-
-ifndef mandir
-    export mandir = $(prefix)/man
-endif
-
-ifndef includedir
-    export includedir = $(prefix)/include
-endif
-
-ifndef bindir
-    export bindir = $(prefix)/bin
-endif
-
-ifndef libexecdir
-    export libexecdir = $(prefix)/lib
-endif
-
-CFLAGS:= -O2 -g2 -Wall -Werror -std=c99 -D_GNU_SOURCE -fpic --pipe
-
-LDFLAGS:= --pipe -shared -fPIC -ldl
-
-SO:=so
-DLL:=so
-
-ifneq "$(findstring arwin,$(OSTYPE))" ""
-  CFLAGS:= -O2 -g2 -Wall -Wno-long-double -std=c99 -DDARWIN --pipe
-  LDFLAGS:= --pipe -bundle -flat_namespace -undefined suppress 
-  SO:=bundle
-  DLL:=dylib
-endif
-
-ifneq "$(findstring olaris,$(OSTYPE))" ""
-  CC = gcc
-  CFLAGS_GLOBAL:= -O2 -g2 -Wall -std=c99 -DSOLARIS --pipe
-endif
-
-ifdef DEBUG
-  CFG = Debug
-else
-  CFG = Release
-endif
-
-ifndef RANLIB
-    export RANLIB=ranlib
-endif
-
-ifndef CC
-    export CC=cc
-endif
-
-ifndef LD
-    export LD=ld
-endif
-
-.PHONY:	all install distclean clean print_header docs tags
Index: unk/psLib/src/Makefile~
===================================================================
--- /trunk/psLib/src/Makefile~	(revision 546)
+++ 	(revision )
@@ -1,61 +1,0 @@
-ifndef prefix
-    export prefix=$(shell cd ..;pwd)
-endif
-
-include Makefile.Globals
-
-NAME:= "$Name: not supported by cvs2svn $ "
-ifeq ($(NAME), "ame: $")
-   VERSION:= ": Project Version: Unknown "
-else
-   VERSION:= ": Project Version: $(NAME) "
-endif
-
-ALLTARGETS = sysUtils
-INSTALLTARGETS = installSysUtils
-CLEANTARGETS = cleanSysUtils
-
-all:	$(ALLTARGETS)  
-	@echo ""
-	@echo "    ---- All targets built successfully $(VERSION) ----"
-	@echo ""
-
-sysUtils:
-	$(MAKE) --directory=sysUtils all
-
-installSysUtils:
-	$(MAKE) --directory=sysUtils install
-
-cleanSysUtils:
-	$(MAKE) --directory=sysUtils clean
-
-
-$(includedir):
-	mkdir -p $(includedir)
-
-$(bindir):
-	mkdir -p $(bindir)
-
-$(libexecdir):
-	mkdir -p $(libexecdir)
-       
-$(mandir): $(mandir)/man3
-	mkdir -p $(mandir)
-        
-$(mandir)/man3: $(mandir)/man3
-	mkdir -p $(mandir)/man3
-
-installdirs: $(includedir) $(bindir) $(libexecdir)
-
-install: installdirs $(INSTALLTARGETS) docs
-	cp -r docs/man/man3/* $(mandir)/man3
-
-clean: $(CLEANTARGETS)
-
-distclean: $(DISTCLEANTARGETS)
-        
-docs:
-	doxygen Doxyfile
-
-tags:	
-	cd $(IPPROOT) ; etags `find . \( -name \*.[chy] -o -name \*.cpp \) -print`
