Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bedtools2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
R3
legacy
bedtools2
Commits
cf6b1b17
Commit
cf6b1b17
authored
16 years ago
by
Aaron Quinlan
Browse files
Options
Downloads
Patches
Plain Diff
Added master makefile to compile all programs in the BEDTools project
parent
b2595759
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+50
-0
50 additions, 0 deletions
Makefile
with
50 additions
and
0 deletions
Makefile
0 → 100644
+
50
−
0
View file @
cf6b1b17
# ==========================
# BEDTools Makefile
# (c) 2009 Aaron Quinlan
# ==========================
# define our object and binary directories
export
OBJ_DIR
=
obj
export
BIN_DIR
=
bin
export
SRC_DIR
=
src
# define our common source directories
# export UTILITIES_DIR = CommonSource/Utilities
# define some default flags
export
CFLAGS
?=
-Wall
-O3
export
CXXFLAGS
?=
$(
CFLAGS
)
export
LDFLAGS
?=
-Wl
,-s
export
CXX
?=
g++
# define our platform
#export BLD_PLATFORM ?= linux64-core2
#include includes/$(BLD_PLATFORM).inc
# define our source subdirectories
SUBDIRS
=
$(
SRC_DIR
)
/complementBed
$(
SRC_DIR
)
/coverageBed
$(
SRC_DIR
)
/intersectBed
$(
SRC_DIR
)
/mergeBed
$(
SRC_DIR
)
/genomeCoverageBed
$(
SRC_DIR
)
/fastaFromBed
$(
SRC_DIR
)
/sortBed
UTIL_SUBDIRS
=
$(
SRC_DIR
)
/utils/bedFile
$(
SRC_DIR
)
/utils/sequenceUtilities
all
:
@echo "Building BEDTools
:
"
@
echo
"========================================================="
@
for
dir
in
$(
SUBDIRS
);
do
\
echo
"- Building in
$$
dir"
;
\
$(
MAKE
)
--no-print-directory
-C
$$
dir
;
\
echo
""
;
\
done
@for
dir
in
$(UTIL_SUBDIRS);
do
\
echo
"- Building in $$dir"
;
\
$(MAKE)
--no-print-directory
-C
$$dir;
\
echo
""
;
\
done
.PHONY
:
all
clean
:
@
echo
"Cleaning up."
@
rm
-f
$(
OBJ_DIR
)
/
*
$(
BIN_DIR
)
/
*
.PHONY
:
clean
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment