File: Makeflow

package info (click to toggle)
cctools 7.1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 43,744 kB
  • sloc: ansic: 187,336; cpp: 20,196; python: 18,633; sh: 11,159; xml: 3,688; perl: 2,817; makefile: 1,105
file content (14 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CP=/bin/cp
BASEDIR=../../src/

MAKEFLOW_INPUTS=$BASEDIR/makeflow.c
MAKEFLOW_OUTPUTS=total_line_count.txt

makeflow.c: $BASEDIR/makeflow.c
	$CP $BASEDIR/makeflow.c makeflow.c

condor_submit_makeflow: $BASEDIR/makeflow
	$CP $BASEDIR/condor_submit_makeflow condor_submit_makeflow

total_line_count.txt: makeflow.c condor_submit_makeflow
	LOCAL cat makeflow.c condor_submit_makeflow | wc -l > total_line_count.txt