Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
kubershahi committed Nov 15, 2021
1 parent bcc3ef1 commit 39ea647
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ CC = g++
nn: read_data.o utils.o nn.o
$(CC) $(CFLAGS) read_data.o utils.o nn.o -o nn

read_data.o: read_data.cpp read_data.hpp
read_data.o: read_data.cpp read_data.hpp
$(CC) $(CFLAGS) -c read_data.cpp

utils.o: utils.cpp utils.hpp
utils.o: utils.cpp utils.hpp
$(CC) $(CFLAGS) -c utils.cpp

nn.o: nn.cpp define.hpp read_data.hpp utils.hpp
Expand Down

0 comments on commit 39ea647

Please sign in to comment.