Skip to content

Commit

Permalink
Added clean to make
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Woodford committed Jan 12, 2013
1 parent 1de6d24 commit 06cb49f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin/
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
CC=gcc
CFLAGS=
OUTPUT=gmadconv
OUTPUT=bin/gmadconv

build: gmadconv
gmadconv: gmadconv.c
@mkdir -p bin
$(CC) -o $(OUTPUT) gmadconv.c $(CFLAGS)
@echo "Build Completed."

clean:
@echo "Cleaning up."
@rm -f $(OUTPUT)

0 comments on commit 06cb49f

Please sign in to comment.