summaryrefslogtreecommitdiff
path: root/iup/srcview
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 02:26:30 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 02:32:26 +0200
commit7505e88db66798b2b8fcdff2d92a7136cd826b5b (patch)
treeb6ced565318f8e8112e35cb0ad53abe4212ef8de /iup/srcview
parente9a184546b18cf3b796bd560561f312934004c54 (diff)
Upgrading to IUP 3.2 - and cleaning up.
Diffstat (limited to 'iup/srcview')
-rwxr-xr-xiup/srcview/config.mak62
-rwxr-xr-xiup/srcview/make_uname4
-rwxr-xr-xiup/srcview/make_uname.bat26
3 files changed, 0 insertions, 92 deletions
diff --git a/iup/srcview/config.mak b/iup/srcview/config.mak
deleted file mode 100755
index 9d03f3e..0000000
--- a/iup/srcview/config.mak
+++ /dev/null
@@ -1,62 +0,0 @@
-PROJNAME = iup
-APPNAME = iupview
-OPT = YES
-
-SRC = iup_view.c
-
-IUP := ..
-
-LINKER = $(CPPC)
-
-USE_CD = Yes
-USE_IUPCONTROLS = Yes
-USE_IUP3 = Yes
-
-ifdef GTK_DEFAULT
- ifdef USE_MOTIF
- # Build Motif version in Linux,Darwin,FreeBSD
- APPNAME = iupviewmot
- endif
-else
- ifdef USE_GTK
- # Build GTK version in IRIX,SunOS,AIX,Win32
- APPNAME = iupviewgtk
- endif
-endif
-
-ifeq "$(TEC_UNAME)" "SunOS510x86"
- DEFINES = USE_NO_OPENGL
-else
- USE_OPENGL = Yes
-endif
-
-USE_IM = Yes
-ifdef USE_IM
- DEFINES += USE_IM
- ifneq ($(findstring Win, $(TEC_SYSNAME)), )
- LIBS = iupim iupimglib
- else
- ifdef DBG_DIR
- IUPLIB = $(IUP)/lib/$(TEC_UNAME)d
- else
- IUPLIB = $(IUP)/lib/$(TEC_UNAME)
- endif
- SLIB = $(IUPLIB)/libiupim.a $(IUPLIB)/libiupimglib.a
- endif
-endif
-
-USE_STATIC = Yes
-
-ifneq ($(findstring Win, $(TEC_SYSNAME)), )
- SRC += ../etc/iup.rc
-endif
-
-INCLUDES = ../src
-
-ifeq ($(TEC_UNAME), vc8)
- ifdef DBG
- #debug info not working for vc8 linker
- define DBG
- endef
- endif
-endif
diff --git a/iup/srcview/make_uname b/iup/srcview/make_uname
deleted file mode 100755
index 153c2d7..0000000
--- a/iup/srcview/make_uname
+++ /dev/null
@@ -1,4 +0,0 @@
-# This builds the executable for 1 uname
-
-tecmake relink $1 $2 $3 $4 $5 $6 $7 $8
-#tecmake USE_GTK=Yes relink $1 $2 $3 $4 $5 $6 $7 $8
diff --git a/iup/srcview/make_uname.bat b/iup/srcview/make_uname.bat
deleted file mode 100755
index 1a98efe..0000000
--- a/iup/srcview/make_uname.bat
+++ /dev/null
@@ -1,26 +0,0 @@
-@echo off
-
-if "%1"=="" goto iupexe32
-if "%1"=="vc8" goto iupexe32
-if "%1"=="vc8_64" goto iupexe64
-if "%1"=="all" goto iupexe
-goto end
-
-:iupexe32
-call tecmake vc8 relink %2 %3 %4 %5 %6 %7
-REM call tecmake vc8 "USE_GTK=Yes" relink %2 %3 %4 %5 %6 %7
-goto end
-
-:iupexe64
-call tecmake vc8_64 relink %2 %3 %4 %5 %6 %7
-REM call tecmake vc8_64 "USE_GTK=Yes" relink %2 %3 %4 %5 %6 %7
-goto end
-
-:iupexe
-call tecmake vc8 relink %2 %3 %4 %5 %6 %7
-REM call tecmake vc8 "USE_GTK=Yes" relink %2 %3 %4 %5 %6 %7
-call tecmake vc8_64 relink %2 %3 %4 %5 %6 %7
-REM call tecmake vc8_64 "USE_GTK=Yes" relink %2 %3 %4 %5 %6 %7
-goto end
-
-:end