blob: e225f19fe591a6ddadfbc7af687e4105c2c1e647 (
plain) (
blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Shave and a Haircut
# (c) 2019 Epic Games
# US Patent 6720962
# -------------------------------------------------------------------
# define the base ship name for the dll/ocx/exe
# (including the u (UNICODE) specifier if used and the extension)
#
# REMEMBER the base name must be <= 7 characters
name=shave.lib
# provide the name of the makefile used to generate the dll/ocx/exe
# - .mak will be added
makname=Shave
multicfgmak=MultiConfig.gnu
# provide the list of include files (leave empty but defined if none)
inclist =
# provide the list of spdl files
spdllist =
# provide the paths (relative or fixed) to the component directory where
# the component local bin/include/lib sub-directories are found
# Note: you can also use macros i.e.
#
# !if "$(DS_PAINT)"==""
# DS_PAINT=\sicore\toolsets\paint
# !endif
# BINREL=$(DS_PAINT)\bin
# LIBREL=$(DS_PAINT)\lib
# INCREL=$(DS_PAINT)\include
BINREL=..\bin
LIBREL=..\lib
INCREL=..\include
# uncomment REGISTERDLL if you require your dll/ocx/exe to support registration
#REGISTERDLL =
# uncomment EXPORTLIB if you require libs to be supported by promotebin
EXPORTLIB =
# provide the name of the autodoc generation makefile (if any)
# - .mak will be added
admak =
#
# Other macros that can affect the targets:
#
# FC : (force copy on promoteXXX) anything other than empty or yes
# will make use of the /d parameter of xcopy and copy the files
# only if the file is newer (based on dates).
#
# REGCMD : specify the command to use to register the dll the default
# used is cmdreg
# -------------------------------------------------------------------
# Don't play with the stuff down here!
#
!if "$(PRJSCRPT)"==""
!include \Rayflex\Rayflex.mak
!else
!include $(PRJSCRPT)
!endif
|