Skip to content

Commit

Permalink
doc: Add clean up, and git ignore the binary
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Jul 10, 2023
1 parent 4848a03 commit 351e5d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ example/bin/*
docs/xml
docs/build
docs/src
doc/doc*
*.tmp
*.swo
*.swp
Expand Down
8 changes: 5 additions & 3 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ LIBS =
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
LIBS =
LIBS =
else
LIBS =
endif
endif

$(BIN):
rm -f $(BIN) $(OBJS)
$(BIN): clean
$(CC) $(SRC) $(CFLAGS) -o $(BIN)

clean:
rm -f $(BIN) $(OBJS)

0 comments on commit 351e5d7

Please sign in to comment.