objects.mk

来自「OPC toolkit freeware to develop opc apps」· MK 代码 · 共 37 行

MK
37
字号
#################################################
#   Objects declarations for a Makefile
#################################################

OBJS0 = ntse$(O) ntse_run$(O) ntsprint$(O) \
ntse95cf$(O) ntse95ct$(O) ntse95r$(O)

OBJS=$(OBJS0)
# dllmain$(O)

#################################################
#   Common targets and rules
#################################################

all: $(ALLTARG)

clean-all: clean
	-del $(ALLTARG)

clean:
	-del $(OBJS)

.cpp$(O):
	$(CC) -c $(CFLAGS) $(INCLUDES) $<

.c$(O):
	$(CC) -c $(CFLAGS) $(INCLUDES) $<


#####################################################
# Dependencies
#####################################################

$(OBJS): ntse.h

##################################################

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?