makefile.win

来自「PDF417二维条码源代码」· WIN 代码 · 共 31 行

WIN
31
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?