diff options
| author | 2019-09-24 23:48:46 -0400 | |
|---|---|---|
| committer | 2019-09-24 23:48:46 -0400 | |
| commit | a95ae7068a35f8c7a65da48681eec334fa2c26d7 (patch) | |
| tree | ba56f19b1a000edffa55cf2ae1576c243e678272 /Makefile | |
| parent | 2aace3fc7302e8e09dfc2a7f54576c340d054a1c (diff) | |
| download | chip8-a95ae7068a35f8c7a65da48681eec334fa2c26d7.tar.gz chip8-a95ae7068a35f8c7a65da48681eec334fa2c26d7.tar.bz2 chip8-a95ae7068a35f8c7a65da48681eec334fa2c26d7.zip | |
draw instruction
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)
|