diff options
Diffstat (limited to 'Makefile')
| -rwxr-xr-x | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ all: executable win: executable
all: LDFLAGS = -lncursesw -ltinfow -lpthread
-win: LDFLAGS = ./win/pdcurses.a
+win: LDFLAGS = ./win/pdcurses.a -lpthread
executable: chip8.c ui.c util.c
$(CC) $(CFLAGS) -o $(BIN) chip8.c ui.c util.c $(LDFLAGS)
|