Skip to content
Snippets Groups Projects
Commit 76fb2a0e authored by Aaron's avatar Aaron
Browse files

Updated Makefile to auto-create obj/ and bin/.

parent b6c80bbc
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,11 @@ export CXX = g++
export CXXFLAGS = -Wall -O2
export LIBS = -lz
# make obj/ and bin/ if non-existent
[ -d $(OBJ_DIR) ] || mkdir -p $(OBJ_DIR)
[ -d $(BIN_DIR) ] || mkdir -p $(BIN_DIR)
SUBDIRS = $(SRC_DIR)/annotateBed \
$(SRC_DIR)/bamToBed \
$(SRC_DIR)/bedToBam \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment