aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: f8a310f5541414e766b013b184e3d1e619dc2576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File: Makefile
# Location: https://gitlab.com/bgstack15/gtk3-classic-build
# Author: bgstack15
# Startdate: 2021-08-04 09:51
# Title: Makefile for gtk3-classic-build debuild task
# Improve:
#    add rpm option?

all: gtk3

gtk3:
	./gtk-classic-build-deb.sh

clean:
	rm -rf ./debian_vers ./classic_vers ./gtk+-3.24*/
	rm -rf gtk+3.0_*z gtk+3.0_*.build* gtk+3.0_*.changes* gtk+3.0_*.dsc ./libgtk-3*deb ./libgail-3*deb ./gtk3classic/
bgstack15