You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
b18d259 / Martin Ridgers / 2021-08-16 14:49:33 +0200 [CL 17229263 by Martin Ridgers in ue5-main branch]
18 lines
323 B
Makefile
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 :
|