소스 검색

fix examples Makefile to use Makefile.Web when building for web (#3449)

Co-authored-by: Keith Stellyes <keith@keithstellyes.com>
pull/3452/head
Keith Stellyes 1 년 전
committed by GitHub
부모
커밋
ea325c54e8
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      examples/Makefile

+ 3
- 1
examples/Makefile 파일 보기

@ -156,7 +156,7 @@ ifeq ($(PLATFORM),PLATFORM_ANDROID)
MAKE = mingw32-make
endif
ifeq ($(PLATFORM),PLATFORM_WEB)
MAKE = mingw32-make
MAKE = emmake make
endif
# Define compiler flags: CFLAGS
@ -533,6 +533,8 @@ others: $(OTHERS)
%: %.c
ifeq ($(PLATFORM),PLATFORM_ANDROID)
$(MAKE) -f Makefile.Android PROJECT_NAME=$@ PROJECT_SOURCE_FILES=$<
else ifeq ($(PLATFORM),PLATFORM_WEB)
$(MAKE) -f Makefile.Web $@
else
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
endif

불러오는 중...
취소
저장