aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-08-04 12:08:37 -0400
committerB. Stack <bgstack15@gmail.com>2021-08-04 12:08:37 -0400
commit5bfe4324ab3a9ad515b6249973d248362b70e4e1 (patch)
tree2912d8dea07efa3d1549677d2f7861fd5adf159e /Makefile
downloadgtk3-classic-build-5bfe4324ab3a9ad515b6249973d248362b70e4e1.tar.gz
gtk3-classic-build-5bfe4324ab3a9ad515b6249973d248362b70e4e1.tar.bz2
gtk3-classic-build-5bfe4324ab3a9ad515b6249973d248362b70e4e1.zip
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a93c55c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+# Startdate: 2021-08-04 09:51
+
+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