我有以下Makefile:
all: hello.exe hellogtk.exe hellogtktng.cs
hello.exe: hello.cs
gmcs hello.cs
hellogtk.exe: hellogtk.cs
gmcs -pkg:gtk-sharp-2.0 hellogtk.cs
hellogtktng.exe: hellogtktng.cs
gmcs -pkg:gtk-sharp-2.0 hellogtktng.cs
clean:
rm -f *.exe
Run Code Online (Sandbox Code Playgroud)
我只是开始学习如何编写Makefile,我觉得这一切都有点重复.Makefile专业人员将如何做到这一点?
我正在为GTK#寻找一个好的GUI设计师.我知道Stetic,但它似乎是MonoDevelop不可分割的一部分.我不想使用MonoDevelop,我想使用我选择的编辑器.有没有像样的独立GTK#GUI Designer?