forked from ovidiopr/DM3Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (29 loc) · 784 Bytes
/
Copy pathMakefile
File metadata and controls
38 lines (29 loc) · 784 Bytes
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
DESTDIR=/
BUILDIR=$(CURDIR)/debian/DM3Viewer
PROJECT=DM3Viewer
VERSION=0.1.0
all:
@echo "make win-src - Create source tarball (windows)"
@echo "make win-exe - Create windows executable"
@echo "make win-inst - Create windows installer"
@echo "make win-clean - Delete unnecessary files (windows)"
@echo "make source - Create source tarball"
@echo "make rpm - Create rpm package"
@echo "make deb - Create deb package"
@echo "make clean - Delete unnecessary files"
win-src:
make -f windows/Makefile source
win-exe:
make -f windows/Makefile exe
win-inst:
make -f windows/Makefile all
win-clean:
make -f windows/Makefile clean
source:
make -f linux/Makefile source
deb:
make -f linux/Makefile deb
rpm:
make -f linux/Makefile rpm
clean:
make -f linux/Makefile clean