You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
746 B
48 lines
746 B
!IF 0
|
|
|
|
This directory is a drop point for binaries (dll, lib, exe) that are
|
|
not built, but need to be binplaced.
|
|
|
|
!ENDIF
|
|
|
|
TARGETPATH=
|
|
TARGETNAME=
|
|
TARGETTYPE=NOTARGET
|
|
SOURCES=
|
|
|
|
# makefile.def will binplace any file listed in the MISCFILES macro.
|
|
|
|
!if $(386)
|
|
TDIR = x86
|
|
!else
|
|
TDIR = $(TARGET_DIRECTORY)
|
|
!endif
|
|
|
|
MISCFILES = \
|
|
icw.inf \
|
|
icwscrpt.exe \
|
|
cabicw.bat
|
|
|
|
X86_MISCFILES = \
|
|
icw.sed \
|
|
icw97.inf \
|
|
icw50.sed
|
|
ALPHA_MISCFILES = \
|
|
axp\icw.sed
|
|
COMMON_MISCFILES =
|
|
|
|
|
|
# Complete file lists
|
|
|
|
!if $(386)
|
|
MISCFILES = \
|
|
$(MISCFILES) \
|
|
$(COMMON_MISCFILES) \
|
|
$(X86_MISCFILES)
|
|
|
|
!elseif $(ALPHA)
|
|
MISCFILES = \
|
|
$(MISCFILES) \
|
|
$(COMMON_MISCFILES) \
|
|
$(ALPHA_MISCFILES)
|
|
!endif
|