summary refs log tree commit diff stats
path: root/src/fe-gtk
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-gtk')
-rw-r--r--src/fe-gtk/makefile.mak60
-rw-r--r--src/fe-gtk/typedef.h11
-rw-r--r--src/fe-gtk/xchat.rc22
3 files changed, 0 insertions, 93 deletions
diff --git a/src/fe-gtk/makefile.mak b/src/fe-gtk/makefile.mak
deleted file mode 100644
index f210181a..00000000
--- a/src/fe-gtk/makefile.mak
+++ /dev/null
@@ -1,60 +0,0 @@
-include "..\makeinc.mak"
-
-FEGTK_OBJECTS = \
-about.obj \
-ascii.obj \
-banlist.obj \
-chanlist.obj \
-chanview.obj \
-custom-list.obj \
-dccgui.obj \
-editlist.obj \
-fe-gtk.obj \
-fkeys.obj \
-gtkutil.obj \
-ignoregui.obj \
-joind.obj \
-maingui.obj \
-menu.obj \
-notifygui.obj \
-palette.obj \
-pixmaps.obj \
-plugingui.obj \
-plugin-tray.obj \
-rawlog.obj \
-search.obj \
-servlistgui.obj \
-setup.obj \
-sexy-spell-entry.obj \
-textgui.obj \
-urlgrab.obj \
-userlistgui.obj \
-xtext.obj
-
-!ifdef X64
-MACHINE_FLAG = /MACHINE:X64
-!else
-MACHINE_FLAG = /MACHINE:X86
-!endif
-
-COMLIB = ..\common\xchatcommon.lib
-PROG = xchat.exe
-
-all: $(PROG)
-
-.c.obj::
-	$(CC) $(CFLAGS) -I..\..\plugins $(GLIB) $(GTK) $<
-
-$(PROG): $(FEGTK_OBJECTS) $(COMLIB) xchat-icon.obj
-	$(LINK) /out:$(PROG) /entry:mainCRTStartup $(LDFLAGS) $(LIBS) $(FEGTK_OBJECTS) $(COMLIB) xchat-icon.obj
-
-xchat.res: xchat.rc ../../xchat.ico
-	rc /nologo /r xchat.rc
-
-xchat-icon.obj: xchat.res
-	cvtres /nologo $(MACHINE_FLAG) /OUT:xchat-icon.obj xchat.res
-
-clean:
-	@del *.obj
-	@del $(PROG)
-	@del xchat.res
diff --git a/src/fe-gtk/typedef.h b/src/fe-gtk/typedef.h
deleted file mode 100644
index b20612ea..00000000
--- a/src/fe-gtk/typedef.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef SSIZE_T_DEFINED
-#ifdef ssize_t
-#undef ssize_t
-#endif
-#ifdef _WIN64
-typedef __int64          ssize_t;
-#else
-typedef _W64 int         ssize_t;
-#endif
-#define SSIZE_T_DEFINED
-#endif
diff --git a/src/fe-gtk/xchat.rc b/src/fe-gtk/xchat.rc
deleted file mode 100644
index 18c209c1..00000000
--- a/src/fe-gtk/xchat.rc
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <winver.h>

-#include "../../config.h"

-

-XC_ICON ICON "../../xchat.ico" 

-

-VS_VERSION_INFO VERSIONINFO

-	BEGIN

-		BLOCK "StringFileInfo"

-		BEGIN

-			BLOCK "040904B0"

-			BEGIN

-				

-				VALUE "FileDescription", "XChat-WDK IRC Client"

-				VALUE "ProductName", "XChat-WDK" 

-				VALUE "ProductVersion", PACKAGE_VERSION

-			END

-		END

-		BLOCK "VarFileInfo"

-		BEGIN

-			VALUE "Translation", 0x0409, 0x04B0

-		END

-	END