Merge pull request #20 from debatem1/issue_19

Fix link errors on Ubuntu 18.04.
This commit is contained in:
Gustav Louw 2019-02-27 23:37:40 -05:00 committed by GitHub
commit e366d4d1fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ CC = gcc
SRC = test.c Tinn.c
all:
$(CC) $(CFLAGS) $(LDFLAGS) $(SRC) -o $(BIN)
$(CC) -o $(BIN) $(SRC) $(CFLAGS) $(LDFLAGS)
run:
./$(BIN)