-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaegis.conf
41 lines (34 loc) · 1.11 KB
/
aegis.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* From /usr/local/share/aegis/config.example/make
*/
build_command = "make -j 8 -O && \
echo PROJECT_NUMBER=$v > docs/doxygen/project_number.cfg && make docs " ;
/*
* From man aepconf
*/
development_directory_style =
{
source_file_link = false;
source_file_symlink = false;
source_file_copy = true;
};
/*
* From /usr/local/share/aegis/config.example/fhist
*/
history_create_command =
"fhist ${quote ${basename $history}} -create -cu -i ${quote $input} "
"-p ${quote ${dirname $history}} -r";
history_get_command =
"fhist ${quote ${basename $history}} -e ${quote $e} "
"-o ${quote $output} -p ${quote ${dirname $history}}";
history_put_command =
"fhist ${quote ${basename $history}} -create -cu -i ${quote $input} "
"-p ${quote ${dirname $history}} -r";
history_query_command =
"fhist ${quote ${basename $history}} -l 0 "
"-p ${quote ${dirname $history}} -q";
diff_command =
"fcomp -w ${quote $original} ${quote $input} -o ${quote $output}";
merge_command =
"fmerge ${quote $original} ${quote $MostRecent} ${quote $input} "
"-o ${quote $output} -c /dev/null";