shell-scripte-code/compile
2016-12-18 02:05:13 +01:00

7 lines
176 B
Bash

#!/bin/bash
#read -p "Wie heißt die datei die compiliert werden muss? : " file
gcc -Wall -g "$1".c -o $1 `pkg-config --cflags gtk+-2.0` `pkg-config --libs gtk+-2.0`
./"$1"