Skip to content

Commit

Permalink
Remove bin/ folder
Browse files Browse the repository at this point in the history
  • Loading branch information
integeruser committed Aug 25, 2017
1 parent 6216989 commit 403a648
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
CXX=clang++
CXXFLAGS=-std=c++11 -O2 -Wall

default:
mkdir -p bin
$(CXX) $(CXXFLAGS) -o bin/main -I include src/fptree.cpp src/main.cpp
main:
$(CXX) $(CXXFLAGS) -o main -I include src/fptree.cpp src/main.cpp

clean:
rm -rf bin
rm -rf main

0 comments on commit 403a648

Please sign in to comment.