commit 3ee77a55caa0088facec62c1feb1a5159c918b97 parent 9800cfd29f8c613baded5688ca01908051efa1ed Author: Frederic Cambus <fcambus@users.sourceforge.net> Date: Thu, 11 Jun 2015 19:13:24 +0200 Removing legacy Ubuntu compilation script Diffstat:
D | shbuild/build_ubuntu.sh | | | 27 | --------------------------- |
1 file changed, 0 insertions(+), 27 deletions(-)
diff --git a/shbuild/build_ubuntu.sh b/shbuild/build_ubuntu.sh @@ -1,27 +0,0 @@ -#!/bin/sh -######################################################### -# This UNIX script builds AnsiLove/C under Ubuntu Linux # -# and links it against libgd. # -######################################################### -# modify alconfig.h to configure the resulting binary # -######################################################### -# build script version 1.2, updated by h3rb gi11iland # -# originally created by Stefan Vogt # -######################################################### - -echo "=========================================" -echo "AnsiLove/C build script --> Ubuntu Linux " -echo "=========================================" -echo "... building" -mkdir -p ../bin -gcc -Wall ../ansilove/main.c \ - ../ansilove/alconfig.h ../ansilove/ansilove.h ../ansilove/ansilove.c \ - ../ansilove/substr.h ../ansilove/substr.c ../ansilove/strtolower.h \ - ../ansilove/strtolower.c ../ansilove/explode.h ../ansilove/explode.c \ - ../ansilove/filesize.h ../ansilove/filesize.c ../ansilove/albinfonts.h \ - ../ansilove/albinfonts.c \ - -lz -ljpeg -lpng -lfreetype -lm -lgd \ - -o ../bin/ansilove -echo "... done. Get on with that looooove!" - -exit