shell-scripte-code/compile

8 lines
176 B
Text
Raw Normal View History

2016-12-18 02:05:13 +01:00
#!/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"