Skip to content

Commit

Permalink
github autobuild for macosx
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsiomb committed Sep 17, 2023
1 parent b3a3099 commit 8f5e29b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
mkdir -p examples/fonts
cd examples/fonts
wget http://downloads.sourceforge.net/project/linuxlibertine/linuxlibertine/5.1.3-2/LinLibertineTTF_5.1.3_2011_06_21.tgz
tar zvx LinLibertine_R.ttf -f LinLibertineTTF_5.1.3_2011_06_21.tgz
tar xzvf LinLibertineTTF_5.1.3_2011_06_21.tgz LinLibertine_R.ttf
mv LinLibertine_R.ttf linux-libertine.ttf
- name: get build
Expand Down
2 changes: 1 addition & 1 deletion examples/distfield/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bin = distfield
root = ../..

CFLAGS = -pedantic -Wall -g -I$(root)/src
LDFLAGS = -L$(root) -Wl,-rpath=$(root) -ldrawtext -lfreetype $(libgl)
LDFLAGS = -L$(root) -Wl,-rpath,$(root) -ldrawtext -lfreetype $(libgl)

fonts = sans.ttf

Expand Down
2 changes: 1 addition & 1 deletion examples/nofreetype/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ root = ../..

CC = gcc
CFLAGS = -pedantic -Wall -g -I$(root)/src -I/usr/local/include
LDFLAGS = -L$(root) -Wl,-rpath=$(root) -ldrawtext-noft $(libgl)
LDFLAGS = -L$(root) -Wl,-rpath,$(root) -ldrawtext-noft $(libgl)

font = serif.ttf

Expand Down
2 changes: 1 addition & 1 deletion examples/raster/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bin = raster
root = ../..

CFLAGS = -pedantic -Wall -g -I$(root)/src -I/usr/local/include
LDFLAGS = -L$(root) -Wl,-rpath=$(root) -ldrawtext -lfreetype
LDFLAGS = -L$(root) -Wl,-rpath,$(root) -ldrawtext -lfreetype

font = serif.ttf

Expand Down
2 changes: 1 addition & 1 deletion examples/simple/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bin = simple
root = ../..

CFLAGS = -pedantic -Wall -g -I$(root)/src
LDFLAGS = -L$(root) -Wl,-rpath=$(root) -ldrawtext -lfreetype $(libgl)
LDFLAGS = -L$(root) -Wl,-rpath,$(root) -ldrawtext -lfreetype $(libgl)

font = serif.ttf

Expand Down
2 changes: 1 addition & 1 deletion examples/unicode/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bin = unicode
root = ../..

CFLAGS = -pedantic -Wall -g -I$(root)/src
LDFLAGS = -L$(root) -Wl,-rpath=$(root) -ldrawtext -lfreetype $(libgl)
LDFLAGS = -L$(root) -Wl,-rpath,$(root) -ldrawtext -lfreetype $(libgl)

fonts = serif.ttf cjk.ttf klingon.ttf

Expand Down
2 changes: 1 addition & 1 deletion examples/userdraw/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bin = userdraw
root = ../..

CFLAGS = -pedantic -Wall -g -I$(root)/src
LDFLAGS = -L$(root) -Wl,-rpath=$(root) -ldrawtext -lfreetype $(libgl)
LDFLAGS = -L$(root) -Wl,-rpath,$(root) -ldrawtext -lfreetype $(libgl)

fonts = serif.ttf

Expand Down

0 comments on commit 8f5e29b

Please sign in to comment.