-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
52 lines (45 loc) · 1.51 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
#/***************************************************************************
#
# codesets.library - Amiga shared library for handling different codesets
# Copyright (C) 2001-2005 by Alfonso [alfie] Ranieri <[email protected]>.
# Copyright (C) 2005-2021 codesets.library Open Source Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# codesets.library project: http://sourceforge.net/projects/codesetslib/
#
# Most of the code included in this file was relicensed from GPL to LGPL
# from the source code of SimpleMail (http://www.sf.net/projects/simplemail)
# with full permissions by its authors.
#
# $Id$
#
#***************************************************************************/
.PHONY: all
all: src
.PHONY: src
src:
@$(MAKE) -C src --no-print-directory
.PHONY: clean
clean:
@$(MAKE) -C src --no-print-directory clean
.PHONY: cleanall
cleanall:
@$(MAKE) -C src --no-print-directory cleanall
.PHONY: install
install:
@$(MAKE) -C src --no-print-directory install
.PHONY: bumprev
bumprev:
@sh tools/bumprev.sh all
.PHONY: release
release:
@sh tools/mkrelease.sh