diff options
| author | 2019-09-23 22:39:37 -0400 | |
|---|---|---|
| committer | 2019-09-23 22:39:37 -0400 | |
| commit | 4c4110d6529a502efba928ffb03af64816053eb9 (patch) | |
| tree | c4e687e01ad37691128d93e32e853877e56ce731 /Makefile | |
| parent | 1ea493d0d11d19dd3777f3e2646bce19929f786a (diff) | |
| download | chip8-4c4110d6529a502efba928ffb03af64816053eb9.tar.gz chip8-4c4110d6529a502efba928ffb03af64816053eb9.tar.bz2 chip8-4c4110d6529a502efba928ffb03af64816053eb9.zip | |
improve ui and implement 2 more instructions
Diffstat (limited to 'Makefile')
| -rwxr-xr-x | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ win: BIN = chip8.exe all: executable
win: executable
-all: LDFLAGS = -lncursesw -ltinfow -lpthread
+all: LDFLAGS = -lncursesw -lpthread
win: LDFLAGS = ./win/pdcurses.a
executable: chip8.c ui.c util.c
|