Changed makefile slightly so it compiles in Ubuntu 11.10

This commit is contained in:
Davis King 2011-10-19 21:42:32 -04:00
parent 89172e11d6
commit 6ed5de3e6f
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ OBJ = $(TMP:.c=.o)
$(TARGET): $(OBJ)
@echo Linking $@
@$(CC) $(LFLAGS) $(OBJ) -o $@
@$(CC) $(OBJ) $(LFLAGS) -o $@
@echo Build Complete
.cpp.o: $<