📄 makefile
字号:
# Wedit Makefile for project ex4_39
SRCDIR=e:\acm\1014\samples\c\onlyone
CFLAGS=-Ic:\lcc\include -g2
CC=$(LCCROOT)\bin\lcc.exe
LINKER=$(LCCROOT)\bin\lcclnk.exe
OBJS=\
ex4_39.obj
LIBS=
EXE=ex4_39.exe
$(EXE): $(OBJS) Makefile
$(LINKER) -subsystem console -o $(SRCDIR)\lcc1\ex4_39.exe $(OBJS) $(LIBS)
# Build ex4_39.c
EX4_39_C=\
ex4_39.obj: $(EX4_39_C) $(SRCDIR)\ex4_39.c
$(CC) -c $(CFLAGS) $(SRCDIR)\ex4_39.c
link:
$(LINKER) -subsystem console -o $(SRCDIR)\lcc1\ex4_39.exe $(OBJS) $(LIBS)
clean:
del $(OBJS) E:\ACM\1014\Samples\C\OnlyOne\lcc1\ex4_39.exe
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -