Added makefile that creates a .zip and a .tar.gz file for installation.

master
Gabriel Pérez-Cerezo 2016-10-23 19:10:02 +02:00
parent 1f8e9520f8
commit 3990565538
No known key found for this signature in database
GPG Key ID: 90422B01A46D0B3E
1 changed files with 5 additions and 0 deletions

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
tarball: clean
tar czf advtrains.tar.gz textures/*.png models/*.b3d *.lua *.txt
which zip && zip advtrains.zip textures/*.png models/*.b3d *.lua *.txt
clean:
rm -f advtrains.zip advtrains.tar.gz