📄 makefile
字号:
# In case of windows, modification is not necessary anymore.# Uncomment for Solaris# CFLAGS = -D SOLARIS# This might be also needed for Solaris:# CC=gcc# Comment this out, to enable statisticsCFLAGS += -D NOSTATS# Uncomment this to force smsd to run in terminal mode#CFLAGS += -D TERMINAL# Uncomment to add debug info# CFLAGS += -ggdb -O0# The following options are only used by developers# CFLAGS += -Wall # CFLAGS += -D DEBUGMSGall: smsd smsd: smsd.c extras.o locking.o cfgfile.o logging.o alarm.o smsd_cfg.o charset.o stats.o blacklist.o whitelist.o modeminit.o pdu.oifneq (,$(findstring NOSTATS,$(CFLAGS))) $(CC) $(CFLAGS) -o $@ $^else $(CC) `mm-config --cflags` $(CFLAGS) -o $@ $^ `mm-config --ldflags --libs` @echo "(Please ignore warning about tempnam -- it is used in a safe way)"endifclean: rm -f *.o smsd *.exe
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -