You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb trivial #preflight none (git:a3ad22a - Martin Ridgers - 2023-01-18 10:19:52 +0100) [CL 23753010 by Martin Ridgers in ue5-main branch]
18 lines
311 B
Makefile
18 lines
311 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 nmake.makefile
|
|
|
|
!else
|
|
else
|
|
|
|
include gmake.makefile
|
|
|
|
endif
|
|
!endif :
|