📄 makefile.win
字号:
# Project: Barcoder
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = barcoder.o $(RES)
LINKOBJ = barcoder.o $(RES)
LIBS = FreeImage.lib pdf417codec_mingw.lib
INCS =
CXXINCS =
BIN = Barcoder.exe
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
RM = rm -f
.PHONY: all all-before all-after clean clean-custom
all: all-before Barcoder.exe all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CC) $(LINKOBJ) -o "Barcoder.exe" $(LIBS)
barcoder.o: barcoder.c
$(CC) -c barcoder.c -o barcoder.o $(CFLAGS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -