diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-11-20 16:08:43 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-11-20 16:08:43 +0100 |
| commit | a8c4da5b955eab2eed9ebb03ee4b1212ec6fe042 (patch) | |
| tree | 3fe233ce2883545ec42d2c3cf5661fba3818fb9d /Makefile | |
| parent | 0df4f6f98101bb3be192ce892aa1452f2c6de1a4 (diff) | |
| download | nissy-a8c4da5b955eab2eed9ebb03ee4b1212ec6fe042.tar.gz nissy-a8c4da5b955eab2eed9ebb03ee4b1212ec6fe042.zip | |
Multithreading seems to be working now, it was easier than expected!
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -1,13 +1,13 @@ | |||
| 1 | # See LICENSE file for copyright and license details. | 1 | # See LICENSE file for copyright and license details. |
| 2 | 2 | ||
| 3 | VERSION = 2.0beta2 | 3 | VERSION = 2.0beta3 |
| 4 | 4 | ||
| 5 | PREFIX = /usr/local | 5 | PREFIX = /usr/local |
| 6 | MANPREFIX = ${PREFIX}/share/man | 6 | MANPREFIX = ${PREFIX}/share/man |
| 7 | 7 | ||
| 8 | CPPFLAGS = -DVERSION=\"${VERSION}\" | 8 | CPPFLAGS = -DVERSION=\"${VERSION}\" |
| 9 | CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS} | 9 | CFLAGS = -std=c99 -pthread -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS} |
| 10 | DBGFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS} | 10 | DBGFLAGS = -std=c99 -pthread -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS} |
| 11 | 11 | ||
| 12 | CC = cc | 12 | CC = cc |
| 13 | 13 | ||
