diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-08 13:24:57 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-08 13:24:57 +0800 |
| commit | dbea417073f08cbc884225a392784abf613d320a (patch) | |
| tree | 139b100c232a9b8e8ec610cf4957e853ed4c5ea0 /Makefile.am | |
| parent | 79a5ba4766cc955ca62de807e3c41e3203555958 (diff) | |
Further generalise the autotools files
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index e11069c..ae14fb4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,12 @@ lib_LTLIBRARIES = libproductviewer.la libproductviewer_la_SOURCES = viewer.c converter.c +if APPLE +libproductviewer_la_CFLAGS = -I${prefix}/System/Library/Frameworks/OpenGLES.framework/Headers +endif +if WASM +libproductviewer_la_LDFLAGS = -static +endif +if IOS +libproductviewer_la_LDFLAGS = -static +endif include_HEADERS = productviewer.h |