Merge branch 'master' into 'master'

Fix Issue #6

See merge request InfiniteNesLives/INL-retro-progdump!18
This commit is contained in:
Paul Molloy 2019-01-11 16:23:25 +00:00
commit a11940f93d
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ CFLAGS=-Wall -O
LDFLAGS= -llua -lusb-1.0 -Lsource/lua
INCLUDE= -I ./include -I ../shared
LDFLAGS_WINDOWS= -L ./winlib $(LDFLAGS)
LDFLAGS_UNIX= -lm $(LDFLAGS)
LDFLAGS_UNIX= $(LDFLAGS) -lm
CC= gcc
SOURCES=$(wildcard source/*.c)