mirror of
https://github.com/gpac/gpac.git
synced 2026-01-12 00:05:22 +08:00
17 lines
276 B
Makefile
17 lines
276 B
Makefile
|
|
ifeq ($(DEBUGBUILD),yes)
|
|
CFLAGS+=-g
|
|
LDFLAGS+=-g
|
|
endif
|
|
|
|
ifeq ($(GPROFBUILD),yes)
|
|
CFLAGS+=-pg
|
|
LDFLAGS+=-pg
|
|
endif
|
|
|
|
ifeq ($(CONFIG_EMSCRIPTEN),yes)
|
|
else ifeq ($(CONFIG_DARWIN),yes)
|
|
else
|
|
LDFLAGS+= -Wl,-rpath,'$$ORIGIN' -Wl,-rpath,$(prefix)/lib -Wl,-rpath-link,../../bin/gcc
|
|
endif
|