Skip to content

Commit

Permalink
Fix missing -lfann in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
orso82 committed Mar 27, 2019
1 parent 3b6029e commit e5fc175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libbrainfuse.a: brainfuse_lib.o Makefile
$(ARCH) libbrainfuse.a $<

brainfuse_run.exe : brainfuse_run.c libbrainfuse.a
$(CC) $(CFLAGS) -o $@ -I./ -L./ $< -lbrainfuse -lm -L$(FANN_ROOT)/lib/ -I$(FANN_ROOT)/src/include -I$(FANN_ROOT)/include
$(CC) $(CFLAGS) -o $@ -I./ -L./ $< -lbrainfuse -lm -L$(FANN_ROOT)/lib/ -I$(FANN_ROOT)/src/include -I$(FANN_ROOT)/include -lfann

%.o : %.c
$(CC) $(CFLAGS) -c $< -I./ -I$(FANN_ROOT)/src/include -I$(FANN_ROOT)/include
Expand Down

0 comments on commit e5fc175

Please sign in to comment.