代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/440428/7689462
makefile
.PHONY:clean
CC=gcc
CFLAGS=-g
objects=DaemonMgr.o Ftpcmd.o Ftpdatatrans.o Ftpnet.o Public.o FtpMain.o
.c.o:
$(CC) $(CFLAGS) -c $<
Ftp:$(objects)
$(CC) $(CFLAGS) $^ -o $@ -lcrypt
clean:
rm
www.eeworm.com/read/439471/7708131
txt makefile编写.txt
回复 工 具 心 情 休 闲 博 客 论 坛
我的百思 | 定制百思
lidson: 退出 | 我的博客 | 短消息 | 搜索 | 控制面板 | 当月统计 | 繁體中文
开通我的个人空间 百思论坛 ? 网络仿真软件 ? NS ? 跟我一起写 Makefile(转载)
上一主题 下一主题 可打印版本 | 订阅主题 | 收藏主题 | 开通
www.eeworm.com/read/436119/7776318
in makefile.in
#############################################################################
####### Compiler, tools and options
CXX = $(SYSCONF_CXX) $(QT_CXX_MT)
CXXFLAGS= $(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAG
www.eeworm.com/read/436119/7776324
in makefile.in
#############################################################################
####### Compiler, tools and options
CXX = $(SYSCONF_CXX) $(QT_CXX_MT)
CXXFLAGS= $(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAG
www.eeworm.com/read/436090/7776986
user goodsreportmanage.csproj.user
D:\Program Files\Common Files\Business Objects\2.7\Managed\C:\Program Files\Common Files\B
www.eeworm.com/read/435894/7782058
java maze.java
class Maze {
static final int[] dx = { 1, 0, -1, 0 };
static final int[] dy = { 0, -1, 0, 1 };
static final int[] queueX = new int[Cfg.SIZE * Cfg.SIZE];
static final int[] queueY
www.eeworm.com/read/435787/7784553
h ih263enc.h
/*==========================================================================*/
/* Copyright (C) 2000 Texas Instruments, Incorporated */
/* All Rights R
www.eeworm.com/read/435785/7784746
h ih263enc.h
/*==========================================================================*/
/* Copyright (C) 2000 Texas Instruments, Incorporated */
/* All Rights R
www.eeworm.com/read/435509/7791019
makefile
CC = gcc
CFLAGS = -pg
OBJECTS = main.o travel.o plotTour.o getpoints.o
SOURCES = main.c travel.c plotTour.c getpoints.c
a.out: ${OBJECTS}
${CC} ${CFLAGS} -o a.out ${OBJECTS} -lm
main.o: list.h trave
www.eeworm.com/read/435150/7796473
cpp box.cpp
// Program 11.2 Using pointers to Box objects. File: box.cpp
// Defines the Box member function
#include "box.h"
// Box function to calculate volume
double Box::volume() {
return length * w