Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ tbd
Compile
--------------

Simply run make
Simply run make, like this:

```Makefile
$ make all

```
You should see the binaries in `bin/` folder

Binary distribution
--------------
Expand Down
1 change: 1 addition & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
CFLAGS += -Wall -W -pipe -O2 -std=gnu99

all: clean native
mv *.bin ../bin
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might want to copy *.exe for Windows builds too?


release: native windows
$(STRIP_NATIVE) *.bin
Expand Down