mirror of
https://github.com/BertoldVdb/ZoneDetect.git
synced 2026-03-25 08:45:56 +00:00
This adds a simple `make demo` target that builds the demo with `gcc`. The readme is also updated to mention the make target and give an example of how to run it. The example should make clearer what is to be passed in as the `dbname` parameter; initially I tried `db.zip` and passing in the `out_v1` directory path before realizing that each of the database files is separate and that the full path should be given.
2 lines
104 B
Makefile
2 lines
104 B
Makefile
demo: Makefile demo.c library/zonedetect.c
|
|
gcc -o demo demo.c -Wall -Ilibrary library/zonedetect.c -lm
|