-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
40 lines (28 loc) · 807 Bytes
/
Makefile
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
# Makefile for ubiquity-slideshow-ubuntu
SOURCE=.
BUILD=$(SOURCE)/build
SOURCESLIDES=$(SOURCE)/slideshows
all: clean build_pop-os
build_init:
mkdir -p $(BUILD)
build_ubuntu: build_init
cp -rL $(SOURCESLIDES)/ubuntu $(BUILD)
build_pop-os: build_init
cp -rL $(SOURCESLIDES)/pop-os $(BUILD)
build_kubuntu: build_init
cp -rL $(SOURCESLIDES)/kubuntu $(BUILD)
build_xubuntu: build_init
cp -rL $(SOURCESLIDES)/xubuntu $(BUILD)
build_lubuntu: build_init
cp -rL $(SOURCESLIDES)/lubuntu $(BUILD)
build_edubuntu: build_init
cp -rL $(SOURCESLIDES)/edubuntu $(BUILD)
translations:
./generate-local-slides.sh ubuntu
./generate-local-slides.sh kubuntu
./generate-local-slides.sh xubuntu
./generate-local-slides.sh lubuntu
./generate-local-slides.sh edubuntu
.PHONY : clean
clean:
-rm -rf $(BUILD)