Files
UnrealEngineUWP/Engine/Source/Programs/UnrealTraceServer/makefile
Martin Ridgers acf9678e02 Polyglot makefile
b18d259 / Martin Ridgers / 2021-08-16 14:49:33 +0200

[CL 17229263 by Martin Ridgers in ue5-main branch]
2021-08-19 03:41:51 -04:00

18 lines
323 B
Makefile

# vim: expandtab foldlevel=1 ft=make
# Ensure "all" is the first encountered target so it is the default
all :
ifdef MAKEDIR: # gmake=false condition, nmake=two unused targets
!ifdef MAKEDIR # gmake=skipped, nmake=true condition
!include build/nmake.makefile
!else
else
include build/gmake.makefile
endif
!endif :