makefile.in
来自「OTP是开放电信平台的简称」· IN 代码 · 共 141 行
IN
141 行
# ``The contents of this file are subject to the Erlang Public License,# Version 1.1, (the "License"); you may not use this file except in# compliance with the License. You should have received a copy of the# Erlang Public License along with this software. If not, it can be# retrieved via the world wide web at http://www.erlang.org/.# # Software distributed under the License is distributed on an "AS IS"# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See# the License for the specific language governing rights and limitations# under the License.# # The Initial Developer of the Original Code is Ericsson Utvecklings AB.# Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings# AB. All Rights Reserved.''# # $Id$#include $(ERL_TOP)/make/target.mkinclude $(ERL_TOP)/make/$(TARGET)/otp.mkCC = @CC@LD = @LD@LIBS = @LIBS@BINDIR = ../priv/bin/$(TARGET)OBJDIR = ../priv/obj/$(TARGET)# ----------------------------------------------------# Application version# ----------------------------------------------------include ../vsn.mkVSN=$(OS_MON_VSN)# ----------------------------------------------------# Release directory specification# ----------------------------------------------------RELSYSDIR = $(RELEASE_PATH)/lib/os_mon-$(VSN)# ----------------------------------------------------# Target Specs# ----------------------------------------------------ifeq ($(findstring win32,$(TARGET)),win32)PROGRAMS = \ win32sysinfo.exe \ nteventlog.exeC_FILES=win32sysinfo.c \ nteventlog/elog_main.c \ nteventlog/elog_util.c \ nteventlog/elog_registry.c \ nteventlog/elog_pipe_stdin.c \ nteventlog/elog_format.cEVLOG_OBJECTS = \ $(OBJDIR)/elog_main.o \ $(OBJDIR)/elog_util.o \ $(OBJDIR)/elog_registry.o \ $(OBJDIR)/elog_pipe_stdin.o \ $(OBJDIR)/elog_format.o ENTRY_OBJ=$(ERL_TOP)/erts/obj/$(TARGET)/port_entry.oPORT_ENTRY_POINT=erl_port_entryENTRY_LDFLAGS=-entry:$(PORT_ENTRY_POINT)elseifeq ($(findstring vxworks_simso,$(TARGET)),vxworks_simso)PROGRAMS =elsePROGRAMS = \ memsup @os_mon_programs@C_FILES= $(PROGRAMS:%=%.c)endifendifTARGET_FILES= $(PROGRAMS:%=$(BINDIR)/%)ALL_CFLAGS = @CFLAGS@ @DEFS@ $(CFLAGS)# ----------------------------------------------------# Targets# ----------------------------------------------------debug opt: $(OBJDIR) $(BINDIR) $(TARGET_FILES)$(OBJDIR): -@mkdir -p $(OBJDIR)$(BINDIR): -@mkdir -p $(BINDIR)clean: rm -f $(TARGET_FILES) rm -f core *~docs:# ----------------------------------------------------# Special Build Targets# ----------------------------------------------------$(BINDIR)/win32sysinfo.exe: $(OBJDIR)/win32sysinfo.o $(ENTRY_OBJ) $(LD) $(LDFLAGS) $(ENTRY_LDFLAGS) -o $@ $(OBJDIR)/win32sysinfo.o $(ENTRY_OBJ)$(BINDIR)/nteventlog.exe: $(EVLOG_OBJECTS) $(LD) $(LDFLAGS) $(ENTRY_LDFLAGS) -o $@ $(EVLOG_OBJECTS) $(ENTRY_OBJ)$(BINDIR)/ferrule: $(OBJDIR)/ferrule.o $(LD) $(LDFLAGS) -o $@ $<$(BINDIR)/mod_syslog: $(OBJDIR)/mod_syslog.o $(LD) $(LDFLAGS) -o $@ $<$(BINDIR)/memsup: $(OBJDIR)/memsup.o $(LD) $(LDFLAGS) -o $@ $<$(BINDIR)/cpu_sup: $(OBJDIR)/cpu_sup.o $(LD) $(LDFLAGS) -o $@ $< -lkstat$(OBJDIR)/%.o: %.c $(CC) -c -o $@ $(ALL_CFLAGS) $<$(OBJDIR)/%.o: nteventlog/%.c $(CC) -c -o $@ $(ALL_CFLAGS) $<$(OBJDIR)/memsup.o: memsup.h# ----------------------------------------------------# Release Target# ---------------------------------------------------- include $(ERL_TOP)/make/otp_release_targets.mkifeq ($(findstring vxworks_simso,$(TARGET)),vxworks_simso)release_spec:elserelease_spec: opt $(INSTALL_DIR) $(RELSYSDIR)/src $(INSTALL_DATA) $(C_FILES) $(RELSYSDIR)/src $(INSTALL_DIR) $(RELSYSDIR)/priv/bin $(INSTALL_PROGRAM) $(TARGET_FILES) $(RELSYSDIR)/priv/binendifrelease_docs_spec:
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?