Skip to content

Commit

Permalink
Fix Makefile not recompiling on changes
Browse files Browse the repository at this point in the history
  • Loading branch information
doughsay committed Mar 14, 2019
1 parent ec4bc31 commit 0a5081b
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 @@ -17,7 +17,7 @@ LIBRARY = $(LIBRARY_DIRECTORY)/iterator.so

all: $(SOURCE_FILES) $(LIBRARY)

$(LIBRARY): $(LIBRARY_DIRECTORY)
$(LIBRARY): $(LIBRARY_DIRECTORY) $(SOURCE_FILES)
$(CC) $(CFLAGS) -shared -o $(LIBRARY) $(SOURCE_FILES) -lical $(LDFLAGS)

$(LIBRARY_DIRECTORY):
Expand Down

0 comments on commit 0a5081b

Please sign in to comment.