49 lines
744 B
Plaintext
49 lines
744 B
Plaintext
|
!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)\msuni95k.ime
|
|||
|
|
|||
|
|
|||
|
# Files that are identical for each platform
|
|||
|
|
|||
|
COMMON_MISCFILES =
|
|||
|
|
|||
|
# Complete file lists
|
|||
|
|
|||
|
!if $(386)
|
|||
|
MISCFILES = \
|
|||
|
$(MISCFILES) \
|
|||
|
$(COMMON_MISCFILES) \
|
|||
|
$(X86_MISCFILES)
|
|||
|
|
|||
|
!elseif $(ALPHA)
|
|||
|
MISCFILES = \
|
|||
|
$(MISCFILES) \
|
|||
|
$(COMMON_MISCFILES) \
|
|||
|
$(ALPHA_MISCFILES)
|
|||
|
|
|||
|
!endif
|
|||
|
|