-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
49 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
kentSrc = ../../.. | ||
A = hgGoldGapGl hgLoadGap | ||
iA = hgGoldGapGl hgLoadGap | ||
extraHeaders = ntContig.h | ||
extraObjects = ntContig.o | ||
include ${kentSrc}/inc/userApp.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
kentSrc = ../../.. | ||
A = hgLoadBed | ||
SQL_FILES = ../../lib/encode/encodePeak.sql ../../lib/pgSnp.sql ../../lib/bedDetail.sql ../../lib/bigPsl.as ../../lib/barChartBed.sql ../../lib/interact.sql | ||
include ${kentSrc}/inc/cgiLoader.mk | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
kentSrc = ../../.. | ||
A = hgLoadMaf hgLoadMafSummary | ||
include ${kentSrc}/inc/userApp.mk | ||
include ${kentSrc}/inc/cgiLoader.mk | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
kentSrc = ../../.. | ||
A = hubCheck | ||
include ${kentSrc}/inc/userApp.mk | ||
include ${kentSrc}/inc/cgiLoader.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
kentSrc = ../../.. | ||
A = pslToBigPsl | ||
include $(kentSrc)/inc/userApp.mk | ||
include $(kentSrc)/inc/cgiLoader.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# common variables for CGIs and CGI loader programs | ||
|
||
ifeq (${CGI_BIN_USER},) | ||
CGI_BIN_USER=${CGI_BIN}-${USER} | ||
endif | ||
|
||
ifeq (${CGI_BIN_BETA},) | ||
CGI_BIN_BETA=${CGI_BIN}-beta | ||
endif | ||
|
||
# these rules set CGI_BIN_DEST to the right cgi-bin directory depending | ||
# on the main goal (my (default), alpha or beta) | ||
# this won't work if you supply multiple goals "(make my alpha beta") | ||
# but we do not seem to do that | ||
CGI_BIN_DEST=${CGI_BIN} | ||
ifeq ($(MAKECMDGOALS),my) | ||
CGI_BIN_DEST=${CGI_BIN}-${USER} | ||
endif | ||
ifeq ($(MAKECMDGOALS),) | ||
CGI_BIN_DEST=${CGI_BIN}-${USER} | ||
endif | ||
ifeq ($(MAKECMDGOALS),beta) | ||
CGI_BIN_DEST=${CGI_BIN}-beta | ||
endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters