代码搜索结果

找到约 3,568 项符合 Strip 的代码

makefile

CC = armv5l-linux-gcc STRIP= armv5l-linux-strip EXES=rtc all: $(EXES) rtc:max6900.c $(CC) $^ -o $@ $(STRIP) $@ install: cp ./rtc ../../initrd/sbin -f clean: rm rtc -f

makefile

CC = armv5l-linux-gcc STRIP= armv5l-linux-strip EXES=temp all: $(EXES) temp:lm75.c $(CC) $^ -o $@ $(STRIP) $@ install: cp ./temp ../../initrd/sbin -f clean: rm temp -f

makefile

CC = armv5l-linux-gcc STRIP= armv5l-linux-strip EXES=fan all: $(EXES) fan:max6650.c $(CC) $^ -o $@ $(STRIP) $@ install: cp ./fan ../../initrd/sbin -f clean: rm fan -f

makefile.unix

# # Makefile for UNIX - unrar # # Note: you have to 'make clean' before you can build # the sfx module # # Linux using GCC CXX=g++ CXXFLAGS=-O2 DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE STRI

makefile

AS=arm-linux-as LD=arm-linux-ld STRIP=arm-linux-strip all: ../e3.asm e3.s # $(AS) --defsym LINUX=1 --defsym ARMCPU=1 -a=e3arm.lst -gstabs e3.s -o e3.o # $(AS) --defsym LINUX=1 --defsym ARMCPU=1 -a=em

globals.h

//======================================================================= // globals.h //----------------------------------------------------------------------- // This file is part of the package pac

makefile.unix

# # Makefile for UNIX - unrar # # Note: you have to 'make clean' before you can build # the sfx module # # Linux using GCC CXX=g++ CXXFLAGS=-O2 DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE STRI

dhry.bat

make dhry11 make dhry21 strip dhry11 strip dhry21 dhry11 < input dhry21 < input

sfactory.txt

SHOTS FACTORY (Only Window GUI) Nebula 2.0 includes a new shot factory for all systems. The shots factories are accessed from the Video Menu. CPS1 & CPS2 shots factory You'll be able to chan

makefile

CC = arm-linux-gcc STRIP = arm-linux-strip EXEC = tcp_server SRC = tcp_server.c all: $(EXEC) $(EXEC): $(OBJS) $(CC) -o $(EXEC) $(SRC) $(STRIP) $(EXEC) clean: rm -f $(EXEC)