makefile.old
来自「a graphic tools for MTools」· OLD 代码 · 共 34 行
OLD
34 行
# 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 + =
减小字号Ctrl + -
显示快捷键?