Skip to content

Commit ba783ee

Browse files
committed
Add FpCategories into Makefile targets
1 parent e1d7c18 commit ba783ee

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

dev/manually_update_subsplits.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,8 @@ echo "Pushed to ToolsForCategoricalTowers.jl"
3030
git subtree split --prefix=QuotientCategories -b QuotientCategories-split
3131
git push git@github.com:${GITHUB_USER}/QuotientCategories.jl.git QuotientCategories-split:master
3232
echo "Pushed to QuotientCategories.jl"
33+
34+
# FpCategories
35+
git subtree split --prefix=FpCategories -b FpCategories-split
36+
git push git@github.com:${GITHUB_USER}/FpCategories.jl.git FpCategories-split:master
37+
echo "Pushed to FpCategories.jl"

dev/update_subsplits.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,8 @@ echo "Pushed to ToolsForCategoricalTowers.jl"
2929
git subtree split --prefix=QuotientCategories -b QuotientCategories-split > /dev/null 2>&1
3030
git push https://${JULIA_SUBSPLIT_TOKEN}@github.com/homalg-project/QuotientCategories.jl.git QuotientCategories-split:master
3131
echo "Pushed to QuotientCategories.jl"
32+
33+
# FpCategories
34+
git subtree split --prefix=FpCategories -b FpCategories-split > /dev/null 2>&1
35+
git push https://${JULIA_SUBSPLIT_TOKEN}@github.com/homalg-project/FpCategories.jl.git FpCategories-split:master
36+
echo "Pushed to FpCategories.jl"

makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,28 @@ install:
22
julia -e 'using Pkg; \
33
Pkg.develop(path = "ToolsForCategoricalTowers"); \
44
Pkg.develop(path = "QuotientCategories"); \
5+
Pkg.develop(path = "FpCategories"); \
56
'
67

78
gen:
89
$(MAKE) -C ToolsForCategoricalTowers gen
910
$(MAKE) -C QuotientCategories gen
11+
$(MAKE) -C FpCategories gen
1012

1113
gen-full:
1214
$(MAKE) -C ToolsForCategoricalTowers gen-full
1315
$(MAKE) -C QuotientCategories gen-full
16+
$(MAKE) -C FpCategories gen-full
1417

1518
test:
1619
$(MAKE) -C ToolsForCategoricalTowers test
1720
$(MAKE) -C QuotientCategories test
21+
$(MAKE) -C FpCategories test
1822

1923
git-commit:
2024
$(MAKE) -C ToolsForCategoricalTowers git-commit
2125
$(MAKE) -C QuotientCategories git-commit
26+
$(MAKE) -C FpCategories git-commit
2227

2328
update-subsplits:
2429
./dev/manually_update_subsplits.sh

0 commit comments

Comments
 (0)