summary refs log tree commit diff stats
path: root/plugins/python/python.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/python/python.c')
0 files changed, 0 insertions, 0 deletions
iktor@aol.com <berkeviktor@aol.com> 2010-08-24 20:03:18 +0200 committer berkeviktor@aol.com <berkeviktor@aol.com> 2010-08-24 20:03:18 +0200 huge cleanup on build system' href='/git-repos/torxchat.git/commit/src/fe-gtk/makefile.mak?h=fix-ub&id=cbcf58aba6497db777fe41d0b9651d0b905c9605'>cbcf58ab ^
c7ec88c8 ^







cbcf58ab ^
c7ec88c8 ^

b9ece546 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
















                                              
                                                                  

                                                  
                                                                                                               







                                                      
                                                                    

      




                       
include "..\makeinc.mak"

!ifdef X64
MACHINE_FLAG = /MACHINE:X64
!else
MACHINE_FLAG = /MACHINE:X86
!endif

COMLIB = ..\common\xchatcommon.lib
PROG = xchat.exe

all: $(PROG)

mmx_cmod.o: mmx_cmod.S
	gcc -DUNDERSCORE_SYMBOLS -c mmx_cmod.S

.c.obj:
	$(CC) $(CFLAGS) -I..\..\plugins $(GLIB) $(GTK) $(SPELL) $<

$(PROG): $(FEGTK_OBJECTS) $(COMLIB) xchat-icon.obj
	$(LINK) /out:$(PROG) /entry:mainCRTStartup $(LDFLAGS) $(LIBS) $(FEGTK_OBJECTS) $(COMLIB) xchat-icon.obj

xchat.rc:
	echo XC_ICON ICON "../../xchat.ico" > xchat.rc

xchat.res: xchat.rc ../../xchat.ico
	rc /r xchat.rc

xchat-icon.obj: xchat.res
	cvtres /nologo $(MACHINE_FLAG) /OUT:xchat-icon.obj xchat.res

clean:
	@del *.obj
	@del mmx_cmod.o
	@del $(PROG)
	@del xchat.rc
	@del xchat.res