2020-09-30 16:53:55 +02:00

57 lines
1.1 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

!IF 0
The bindrop directory is a drop point for binaries (dll, lib, exe) that are
not built, but need to be binplaced.
!ENDIF
TARGETNAME=
TARGETTYPE=NOTARGET
TARGETPATH=
SOURCES=
# makefile.def will binplace any file listed in the MISCFILES macro.
# Platform specific MISCFILES
X86_MISCFILES =
ALPHA_MISCFILES =
# Files that have the same name, but are different for each platform
MISCFILES = \
$(TARGET_DIRECTORY)\tintlgnt.ime \
$(TARGET_DIRECTORY)\tintlphr.exe
# Files that are identical for each platform
COMMON_MISCFILES = \
tintlgb.imd \
tintlgd.imd \
tintlgl.imd \
tintlgnt.cnt \
tintlgnt.hlp \
tintlgs.imd \
tintlgu.imd
# Complete file lists
!if $(386)
MISCFILES = \
$(MISCFILES) \
$(COMMON_MISCFILES) \
$(X86_MISCFILES)
!elseif $(ALPHA)
MISCFILES = \
$(MISCFILES) \
$(COMMON_MISCFILES) \
$(ALPHA_MISCFILES)
!endif