代码搜索结果
找到约 8,431 项符合
RF 的代码
gcc-fat.sh
#!/bin/sh
#
# Build Universal binaries on Mac OS X, thanks Ryan!
#
# Usage: ./configure CC="sh gcc-fat.sh" && make && rm -rf ppc x86
# PowerPC compiler flags (10.2 runtime compatibility)
GCC_COMPILE_
makefile
ifneq ($(KERNELRELEASE),)
obj-m := dac_driver.o
else
KERNELDIR ?= /usr/local/arm/fs2410_2.6.8
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
clean:
rm -rf *.o *.ko *
makefile~
ifneq ($(KERNELRELEASE),)
obj-m := clk_driver.o
else
KERNELDIR ?= /usr/local/arm/fs2410_2.6.8
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
clean:
rm -rf *.o *.ko *
basic-1
#! /bin/sh
if test "$VERBOSE" = yes; then
set -x
ginstall --version
fi
dir=dir
file=file
pwd=`pwd`
tmp=inst-basic.$$
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0
trap 'exit $?' 1 2
into-self
#! /bin/sh
# Demonstrate how mv fails when it tries to move a directory into itself.
if test "$VERBOSE" = yes; then
set -x
mv --version
fi
dir=toself-dir
file=toself-file
test_failure=0
rm -rf
follow-slink
#!/bin/sh
# make sure ls -L always follows symlinks
if test "$VERBOSE" = yes; then
set -x
ls --version
fi
pwd=`pwd`
tmp=follow-sl.$$
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0
trap
makefile
obj-m := usb-skeleton.o
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
all:
$(MAKE) -C $(KERNELDIR) M=$(PWD)
clean:
rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tm
makefile
obj-m := usb-skeleton.o
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
all:
$(MAKE) -C $(KERNELDIR) M=$(PWD)
clean:
rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tm
makefile
# -Aa is HPUX's way of invoking ANSI C
CFLAGS = -g -Aa
alloc.o: alloc.o alloc.h
cc $(CFLAGS) -c alloc.c -o alloc.o
clean:
rm -rf alloc.o
makefile
CC = gcc
AS = as
AR = ar
LD = ld
NM = nm
RM = rm
CFLAGS = -I../..
all:
$(CC) $(CFLAGS) -DIRE201 -DADDR=0x8000 -o param param.c
./param
clean:
$(RM) -rf *.o param