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
28cbfd71
Commit
28cbfd71
authored
13 years ago
by
Aaron
Browse files
Options
Downloads
Plain Diff
fix blocked_intervals merge conflicts
parents
0ac3897a
5184b441
No related branches found
No related tags found
No related merge requests found
Changes
63
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/utils/tabFile/Makefile
+1
-1
1 addition, 1 deletion
src/utils/tabFile/Makefile
src/windowBed/Makefile
+3
-14
3 additions, 14 deletions
src/windowBed/Makefile
src/windowMaker/Makefile
+3
-7
3 additions, 7 deletions
src/windowMaker/Makefile
with
7 additions
and
22 deletions
src/utils/tabFile/Makefile
+
1
−
1
View file @
28cbfd71
...
...
@@ -9,7 +9,7 @@ INCLUDES = -I$(UTILITIES_DIR)/lineFileUtilities/ -I$(UTILITIES_DIR)/gzstream/ -I
# ----------------------------------
# define our source and object files
# ----------------------------------
SOURCES
=
tabFile.cpp
SOURCES
=
tabFile.cpp
tabFile.h
OBJECTS
=
$(
SOURCES:.cpp
=
.o
)
_EXT_OBJECTS
=
lineFileUtilities.o gzstream.o fileType.o
EXT_OBJECTS
=
$(
patsubst %,
$(
OBJ_DIR
)
/%,
$(
_EXT_OBJECTS
))
...
...
This diff is collapsed.
Click to expand it.
src/windowBed/Makefile
+
3
−
14
View file @
28cbfd71
...
...
@@ -16,12 +16,9 @@ INCLUDES = -I$(UTILITIES_DIR)/bedFile/ \
# ----------------------------------
# define our source and object files
# ----------------------------------
SOURCES
=
windowMain.cpp windowBed.cpp
OBJECTS
=
$(
SOURCES:.cpp
=
.o
)
_EXT_OBJECTS
=
bedFile.o lineFileUtilities.o gzstream.o fileType.o
EXT_OBJECTS
=
$(
patsubst %,
$(
OBJ_DIR
)
/%,
$(
_EXT_OBJECTS
))
SOURCES
=
windowMain.cpp windowBed.cpp windowBed.h
OBJECTS
=
windowMain.o windowBed.o
BUILT_OBJECTS
=
$(
patsubst %,
$(
OBJ_DIR
)
/%,
$(
OBJECTS
))
PROGRAM
=
windowBed
all
:
$(BUILT_OBJECTS)
...
...
@@ -32,16 +29,8 @@ $(BUILT_OBJECTS): $(SOURCES)
@
echo
" * compiling"
$(
*
F
)
.cpp
@$(
CXX
)
-c
-o
$@
$(
*
F
)
.cpp
$(
LDFLAGS
)
$(
CXXFLAGS
)
$(
INCLUDES
)
$(EXT_OBJECTS)
:
@$(
MAKE
)
--no-print-directory
-C
$(
UTILITIES_DIR
)
/bedFile/
@$(
MAKE
)
--no-print-directory
-C
$(
UTILITIES_DIR
)
/lineFileUtilities/
@$(
MAKE
)
--no-print-directory
-C
$(
UTILITIES_DIR
)
/BamTools/
@$(
MAKE
)
--no-print-directory
-C
$(
UTILITIES_DIR
)
/BamTools-Ancillary/
@$(
MAKE
)
--no-print-directory
-C
$(
UTILITIES_DIR
)
/gzstream/
@$(
MAKE
)
--no-print-directory
-C
$(
UTILITIES_DIR
)
/fileType/
clean
:
@
echo
"Cleaning up."
@
rm
-f
$(
OBJ_DIR
)
/
*
$(
BIN_DIR
)
/
*
@
rm
-f
$(
OBJ_DIR
)
/
windowMain.o
$(
OBJ_DIR
)
/windowBed.o
.PHONY
:
clean
This diff is collapsed.
Click to expand it.
src/windowMaker/Makefile
+
3
−
7
View file @
28cbfd71
...
...
@@ -16,13 +16,9 @@ INCLUDES = -I$(UTILITIES_DIR)/genomeFile/ \
# ----------------------------------
# define our source and object files
# ----------------------------------
SOURCES
=
windowMakerMain.cpp windowMaker.cpp
OBJECTS
=
$(
SOURCES:.cpp
=
.o
)
_EXT_OBJECTS
=
genomeFile.o
EXT_OBJECTS
=
$(
patsubst %,
$(
OBJ_DIR
)
/%,
$(
_EXT_OBJECTS
))
SOURCES
=
windowMakerMain.cpp windowMaker.cpp windowMaker.h
OBJECTS
=
windowMakerMain.o windowMaker.o
BUILT_OBJECTS
=
$(
patsubst %,
$(
OBJ_DIR
)
/%,
$(
OBJECTS
))
PROGRAM
=
windowMaker
all
:
$(BUILT_OBJECTS)
...
...
@@ -37,6 +33,6 @@ $(EXT_OBJECTS):
clean
:
@
echo
"Cleaning up."
@
rm
-f
$(
OBJ_DIR
)
/
*
$(
BIN_DIR
)
/
*
@
rm
-f
$(
OBJ_DIR
)
/
windowMakerMain.o
$(
OBJ_DIR
)
/windowMaker.o
.PHONY
:
clean
This diff is collapsed.
Click to expand it.
Prev
1
2
3
4
Next
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