Fix link errors on Ubuntu 18.04.

This commit is contained in:
Geremy Condra 2019-02-27 16:45:05 -08:00
parent ec9a03ffe8
commit dae769b22b
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)