Skip to content

Commit

Permalink
Merge pull request ray-project#6 from pcmoritz/make
Browse files Browse the repository at this point in the history
Remove directories as well with make clean.
  • Loading branch information
pcmoritz authored Aug 17, 2016
2 parents 36af794 + 29f0489 commit 32fadd5
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 @@ -5,7 +5,7 @@ BUILD = build
all: $(BUILD)/plasma_store $(BUILD)/plasma_client.so $(BUILD)/example

clean:
rm $(BUILD)/*
rm -r $(BUILD)/*

$(BUILD)/plasma_store: src/plasma_store.c src/plasma.h src/fling.h src/fling.c
$(CC) $(CFLAGS) --std=c99 -D_XOPEN_SOURCE=500 src/plasma_store.c src/fling.c -o $(BUILD)/plasma_store
Expand Down

0 comments on commit 32fadd5

Please sign in to comment.