Subversion Repositories filter_foundry

Rev

Rev 186 | Rev 193 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 186 Rev 192
Line 1... Line 1...
1
# This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
1
# This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
2
# Copyright (C) 2002-2019 Toby Thain, toby@telegraphics.com.au
2
# Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
-
 
3
# Copyright (C) 2018-2019 Daniel Marschall, ViaThinkSoft
3
 
4
 
4
# This program is free software; you can redistribute it and/or modify
5
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by  
6
# it under the terms of the GNU General Public License as published by  
6
# the Free Software Foundation; either version 2 of the License, or
7
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
# (at your option) any later version.
Line 40... Line 41...
40
# - add  -d_WIN64  to RFLAGS
41
# - add  -d_WIN64  to RFLAGS
41
 
42
 
42
EXEC = FilterFoundry
43
EXEC = FilterFoundry
43
 
44
 
44
# define location of Photoshop SDK headers
45
# define location of Photoshop SDK headers
45
PSAPI = "E:\FilterFoundry\adobe_photoshop_sdk_cc_2017_win\pluginsdk\photoshopapi"
46
PSAPI = "..\photoshop_sdk\pluginsdk\photoshopapi"
46
 
47
 
47
# C compiler flags
48
# C compiler flags
48
CPPFLAGS = -DWIN32 -DWIN_ENV -DYY_SKIP_YYWRAP \
49
CPPFLAGS = -DWIN32 -DWIN_ENV -DYY_SKIP_YYWRAP \
49
           -I$(PSAPI)\Pica_sp -I$(PSAPI)\Photoshop -I$(PSAPI)\General \
50
           -I$(PSAPI)\Pica_sp -I$(PSAPI)\Photoshop -I$(PSAPI)\General \
50
           -I..\..\common\adobeplugin -I..\..\common\tt -I..
51
           -I..\..\common\adobeplugin -I..\..\common\tt -I..
Line 55... Line 56...
55
 
56
 
56
# resource compiler flags
57
# resource compiler flags
57
RFLAGS = -i$(PSAPI)\Photoshop -d_WIN64
58
RFLAGS = -i$(PSAPI)\Photoshop -d_WIN64
58
 
59
 
59
# Path to flex and bison (you can download them at https://sourceforge.net/projects/winflexbison/ )
60
# Path to flex and bison (you can download them at https://sourceforge.net/projects/winflexbison/ )
60
FLEX = E:\FilterFoundry\win_flex_bison\win_flex
61
FLEX = win_flex_bison\win_flex
61
BISON = E:\FilterFoundry\win_flex_bison\win_bison
62
BISON = win_flex_bison\win_bison
62
 
63
 
63
OBJ = ..\main.obj ..\funcs.obj ..\process.obj ..\node.obj ..\symtab.obj \
64
OBJ = ..\main.obj ..\funcs.obj ..\process.obj ..\node.obj ..\symtab.obj \
64
	..\ui.obj ..\ui_build.obj ..\preview.obj ..\read.obj ..\save.obj ..\make.obj \
65
	..\ui.obj ..\ui_build.obj ..\preview.obj ..\read.obj ..\save.obj ..\make.obj \
65
	..\scripting.obj ..\lex.yy.obj ..\manifest.obj ..\ui_win.obj ..\make_win.obj ..\versioninfo_modify_win.obj ..\load_win.obj \
66
	..\scripting.obj ..\lex.yy.obj ..\manifest.obj ..\ui_win.obj ..\make_win.obj ..\versioninfo_modify_win.obj ..\load_win.obj \
66
	..\..\common\tt\dbg_win.obj ..\..\common\tt\ui_compat_win.obj \
67
	..\..\common\tt\dbg_win.obj ..\..\common\tt\ui_compat_win.obj \