⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.old

📁 a graphic tools for MTools
💻 OLD
字号:
# Makefile for mfm, a graphical frotend for mtools# (c) 1999 Christian Ospelkaus# <christian@core-coutainville.org># The flags for your compiler# suggestion for SGI MIPS with MIPSPro Compiler (Thanks to Claudio Fanin):# CFLAGS     = "-O2 -xansi-mips3 -DSYSV -woff 1185 -rpath /usr/local/lib"CFLAGS     = -Wall -g # Flags for your linkerLDFLAGS    = `gtk-config --cflags` `gtk-config --libs` # The directory where make install should put the binaries.BINDIR     = /usr/local/bin# Compiler nameCC         = gccall: mfm clean:	rm -f *.o mfm *~ conf.hmfm:	mfm.c conf.h mfm.h	$(CC) $(CFLAGS) mfm.c -o mfm $(LDFLAGS)install:	install mfm $(BINDIR)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -