diff options
author | jaseg <jaseg@jaseg.net> | 2014-02-16 11:57:21 +0100 |
---|---|---|
committer | jaseg <jaseg@jaseg.net> | 2014-02-16 11:57:54 +0100 |
commit | 9934f27cc16e8a2da43033a1f957761e00db4916 (patch) | |
tree | 217e92d44322d5b1c08e835f775e11ef3ffd9910 /host/Makefile | |
parent | 900a9c38e38e5ecb0b2c69a344665b03f148124b (diff) | |
download | matelight-9934f27cc16e8a2da43033a1f957761e00db4916.tar.gz matelight-9934f27cc16e8a2da43033a1f957761e00db4916.tar.bz2 matelight-9934f27cc16e8a2da43033a1f957761e00db4916.zip |
The fundamentals of the new ctypes interface are working
Diffstat (limited to 'host/Makefile')
-rw-r--r-- | host/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/Makefile b/host/Makefile index 345058b..a6b892f 100644 --- a/host/Makefile +++ b/host/Makefile @@ -1,6 +1,6 @@ -all: main.c font.c font.h color.c color.h gif.h gif.c - gcc -shared -std=gnu11 -Wall -lm -o libbdf.so -g -O0 main.c font.c color.c +all: main.c font.c font.h color.c color.h + gcc -shared -fPIC -std=gnu11 -Wall -lm -o libbdf.so -g -O0 main.c font.c color.c clean: rm libbdf.so |