Merge pull request #3 from cnelsonsic/fix_unoptar

Fix the order of -l flags to fix compiling unoptar
This commit is contained in:
Colin Dean 2013-04-06 19:18:13 -07:00
commit c572611249

View File

@ -45,4 +45,4 @@ golay: golay.o parity.o
gcc $(LDFLAGS) -o $@ $^
unoptar: unoptar.o common.o golay_codes.o parity.o
gcc $(LDFLAGS) -o $@ -L/usr/local/lib -lpng -lz $^
gcc -o $@ -L/usr/local/lib $^ -lm -lpng -lz