code
stringlengths 3
1.03M
| repo_name
stringlengths 5
84
| path
stringlengths 4
233
| language
stringclasses 1
value | license
stringclasses 15
values | size
int32 3
1.03M
|
---|---|---|---|---|---|
cmd_drivers/i2c/built-in.o := arm-linux-ld -EL -r -o drivers/i2c/built-in.o drivers/i2c/i2c-boardinfo.o drivers/i2c/i2c-core.o drivers/i2c/i2c-dev.o drivers/i2c/busses/built-in.o drivers/i2c/chips/built-in.o drivers/i2c/algos/built-in.o
| beebingoo/linux-2.6.32.2 | drivers/i2c/.built-in.o.cmd | bat | gpl-2.0 | 242 |
@ECHO OFF
SET BACKEND=ninja
SET BUILDDIR=build
SET DEFAULT_LIBRARY=--default-library static
SET RELEASE=
SET BUILD=
SET XP=
rem ######## Meson msvc script ########
rem ## Usage examples:
rem meson.bat -p ; Creates vs2015 solution
rem meson.bat -p2 ; Creates vs2017 solution
rem meson.bat ; Compiles the project using ninja build system
rem meson.bat --release ; Compiles the project with release flags and ninja build system
rem meson.bat --release --msbuild --xp ; Compiles the project with msbuild and windows xp support
:PARSEARGS
IF NOT "%1"=="" (
IF "%1"=="-p" (
SET BACKEND=vs2015
SET BUILD=project
)
IF "%1"=="-p2" (
SET BACKEND=vs2017
SET BUILD=project
)
IF "%1"=="-r" (
SET BUILD=regen
)
IF "%1"=="--release" (
SET RELEASE=--buildtype=release
)
IF "%1"=="--msbuild" (
SET BUILD=msbuild
)
IF "%1"=="--xp" (
rem TODO Not portable check also -p and -p2 options
SET BACKEND=vs2015
SET XP=1
)
SHIFT
GOTO PARSEARGS
)
IF EXIST shlr\capstone GOTO START
ECHO [ R2 MESON CLONING CAPSTONE ]
git clone -b next --depth 10 https://github.com/aquynh/capstone.git shlr\capstone
rem Applying capstone patches
rem cd shlr\capstone
rem FOR /r %%p IN (..\capstone-patches\*) DO git apply %%p
rem git apply ..\capstone-patches\add-mips2.patch
rem cd ..\..
:START
IF NOT "%RELEASE%"=="" ECHO [ R2 MESON BUILD: RELEASE ]
IF "%BUILD%"=="regen" GOTO REBUILD
IF "%BUILD%"=="project" GOTO BUILDPROJECT
rem Creating build directory with correct parameters
IF EXIST %BUILDDIR% GOTO BUILD
python meson.py --prefix=%CD% %BUILDDIR% %RELEASE% %DEFAULT_LIBRARY% --backend %BACKEND%
:BUILD
CALL :SDB_BUILD
IF "%BUILD%"=="msbuild" GOTO MSBUILD
ECHO [ R2 MESON NINJA BUILD ]
ninja -C %BUILDDIR%
EXIT /b %errorlevel%
:MSBUILD
ECHO [ R2 MESON MSBUILD ]
IF "%XP%"=="1" (
python sys\meson_extra.py
)
msbuild %BUILDDIR%\radare2.sln
EXIT /b %errorlevel%
:BUILDPROJECT
ECHO [ R2 MESON BUILDING %BACKEND% SLN]
IF EXIST %BUILDDIR% rd /s /q %BUILDDIR%
python meson.py --prefix=%CD% %BUILDDIR% --backend=%BACKEND% %RELEASE% %DEFAULT_LIBRARY%
IF "%XP%"=="1" (
python sys\meson_extra.py
)
GOTO EXIT
:REBUILD
python meson.py --internal regenerate %CD% "%CD%\%BUILDDIR%" --backend %BACKEND% %RELEASE% %DEFAULT_LIBRARY%
:EXIT
EXIT /B 0
:SDB_BUILD
ECHO [ SDB BUILD AND GENERATION ]
python sys\meson_sdb.py
EXIT /B 0
| 8tab/radare2 | meson.bat | bat | gpl-3.0 | 2,509 |
%~dp0\cordova.bat clean
| davidjbeveridge/mobox | vendor/phonegap/lib/android/bin/templates/cordova/clean.bat | bat | mit | 24 |
deps_config := \
lib/xz/Kconfig \
lib/Kconfig \
drivers/crypto/caam/Kconfig \
drivers/crypto/Kconfig \
crypto/async_tx/Kconfig \
crypto/Kconfig \
security/integrity/ima/Kconfig \
security/apparmor/Kconfig \
security/tomoyo/Kconfig \
security/smack/Kconfig \
security/selinux/Kconfig \
security/Kconfig \
lib/Kconfig.kmemcheck \
lib/Kconfig.kgdb \
samples/Kconfig \
kernel/trace/Kconfig \
mm/Kconfig.debug \
lib/Kconfig.debug \
arch/arm/Kconfig.debug \
fs/dlm/Kconfig \
fs/nls/Kconfig \
fs/partitions/Kconfig \
fs/9p/Kconfig \
fs/afs/Kconfig \
fs/coda/Kconfig \
fs/ncpfs/Kconfig \
fs/cifs/Kconfig \
fs/ceph/Kconfig \
net/sunrpc/Kconfig \
fs/nfsd/Kconfig \
fs/nfs/Kconfig \
fs/exofs/Kconfig \
fs/ufs/Kconfig \
fs/sysv/Kconfig \
fs/pstore/Kconfig \
fs/romfs/Kconfig \
fs/qnx4/Kconfig \
fs/hpfs/Kconfig \
fs/omfs/Kconfig \
fs/minix/Kconfig \
fs/freevxfs/Kconfig \
fs/squashfs/Kconfig \
fs/cramfs/Kconfig \
fs/logfs/Kconfig \
fs/ubifs/Kconfig \
fs/jffs2/Kconfig \
fs/yaffs2/Kconfig \
fs/efs/Kconfig \
fs/bfs/Kconfig \
fs/befs/Kconfig \
fs/hfsplus/Kconfig \
fs/hfs/Kconfig \
fs/ecryptfs/Kconfig \
fs/affs/Kconfig \
fs/adfs/Kconfig \
fs/configfs/Kconfig \
fs/sysfs/Kconfig \
fs/proc/Kconfig \
fs/ntfs/Kconfig \
fs/fat/Kconfig \
fs/udf/Kconfig \
fs/isofs/Kconfig \
fs/cachefiles/Kconfig \
fs/fscache/Kconfig \
fs/fuse/Kconfig \
fs/autofs4/Kconfig \
fs/quota/Kconfig \
fs/notify/fanotify/Kconfig \
fs/notify/inotify/Kconfig \
fs/notify/dnotify/Kconfig \
fs/notify/Kconfig \
fs/nilfs2/Kconfig \
fs/btrfs/Kconfig \
fs/ocfs2/Kconfig \
fs/gfs2/Kconfig \
fs/xfs/Kconfig \
fs/jfs/Kconfig \
fs/reiserfs/Kconfig \
fs/jbd2/Kconfig \
fs/jbd/Kconfig \
fs/ext4/Kconfig \
fs/ext3/Kconfig \
fs/ext2/Kconfig \
fs/Kconfig \
drivers/interceptor/Kconfig \
drivers/accessory/mhl_tab_v2/Kconfig \
drivers/accessory/Kconfig \
drivers/irda/Kconfig \
drivers/motor/Kconfig \
drivers/battery/Kconfig \
drivers/clocksource/Kconfig \
drivers/hwspinlock/Kconfig \
drivers/clk/Kconfig \
drivers/platform/msm/Kconfig \
drivers/platform/x86/Kconfig \
drivers/platform/Kconfig \
drivers/staging/nvec/Kconfig \
drivers/staging/mei/Kconfig \
drivers/staging/altera-stapl/Kconfig \
drivers/staging/gma500/Kconfig \
drivers/staging/ste_rmi4/Kconfig \
drivers/staging/cptm1217/Kconfig \
drivers/staging/speakup/Kconfig \
drivers/staging/intel_sst/Kconfig \
drivers/staging/ft1000/Kconfig \
drivers/staging/bcm/Kconfig \
drivers/staging/keucr/Kconfig \
drivers/staging/ath6kl/Kconfig \
drivers/staging/sbe-2t3e3/Kconfig \
drivers/staging/westbridge/astoria/gadget/Kconfig \
drivers/staging/westbridge/astoria/block/Kconfig \
drivers/staging/westbridge/astoria/device/Kconfig \
drivers/staging/westbridge/astoria/Kconfig \
drivers/staging/westbridge/Kconfig \
drivers/staging/quickstart/Kconfig \
drivers/staging/tidspbridge/Kconfig \
drivers/staging/solo6x10/Kconfig \
drivers/staging/easycap/Kconfig \
drivers/staging/lirc/Kconfig \
drivers/staging/xgifb/Kconfig \
drivers/staging/cxt1e1/Kconfig \
drivers/staging/crystalhd/Kconfig \
drivers/staging/dt3155v4l/Kconfig \
drivers/staging/sm7xx/Kconfig \
drivers/staging/wlags49_h25/Kconfig \
drivers/staging/wlags49_h2/Kconfig \
drivers/staging/qcache/Kconfig \
drivers/staging/zcache/Kconfig \
drivers/staging/zram/Kconfig \
drivers/staging/cs5535_gpio/Kconfig \
drivers/staging/iio/trigger/Kconfig \
drivers/staging/iio/resolver/Kconfig \
drivers/staging/iio/meter/Kconfig \
drivers/staging/iio/magnetometer/Kconfig \
drivers/staging/iio/light/Kconfig \
drivers/staging/iio/imu/Kconfig \
drivers/staging/iio/gyro/Kconfig \
drivers/staging/iio/dds/Kconfig \
drivers/staging/iio/dac/Kconfig \
drivers/staging/iio/addac/Kconfig \
drivers/staging/iio/adc/Kconfig \
drivers/staging/iio/accel/Kconfig \
drivers/staging/iio/Kconfig \
drivers/staging/sep/Kconfig \
drivers/staging/vme/boards/Kconfig \
drivers/staging/vme/devices/Kconfig \
drivers/staging/vme/bridges/Kconfig \
drivers/staging/vme/Kconfig \
drivers/staging/hv/Kconfig \
drivers/staging/vt6656/Kconfig \
drivers/staging/vt6655/Kconfig \
drivers/staging/quatech_usb2/Kconfig \
drivers/staging/spectra/Kconfig \
drivers/staging/serqt_usb2/Kconfig \
drivers/staging/octeon/Kconfig \
drivers/gpu/drm/nouveau/Kconfig \
drivers/gpu/drm/vmwgfx/Kconfig \
drivers/staging/line6/Kconfig \
drivers/staging/phison/Kconfig \
drivers/staging/pohmelfs/Kconfig \
drivers/staging/android/Kconfig \
drivers/staging/frontier/Kconfig \
drivers/staging/rts_pstor/Kconfig \
drivers/staging/rtl8712/Kconfig \
drivers/staging/rtl8192e/Kconfig \
drivers/staging/rtl8192u/Kconfig \
drivers/staging/rtl8187se/Kconfig \
drivers/staging/panel/Kconfig \
drivers/staging/asus_oled/Kconfig \
drivers/staging/olpc_dcon/Kconfig \
drivers/staging/comedi/Kconfig \
drivers/staging/brcm80211/Kconfig \
drivers/staging/echo/Kconfig \
drivers/staging/wlan-ng/Kconfig \
drivers/staging/winbond/Kconfig \
drivers/staging/usbip/Kconfig \
drivers/staging/cxd2099/Kconfig \
drivers/staging/tm6000/Kconfig \
drivers/staging/cx25821/Kconfig \
drivers/staging/go7007/Kconfig \
drivers/staging/slicoss/Kconfig \
drivers/staging/et131x/Kconfig \
drivers/staging/generic_serial/Kconfig \
drivers/staging/tty/Kconfig \
drivers/staging/Kconfig \
drivers/xen/Kconfig \
drivers/vlynq/Kconfig \
drivers/uio/Kconfig \
drivers/auxdisplay/Kconfig \
drivers/dca/Kconfig \
drivers/dma/Kconfig \
drivers/rtc/Kconfig \
drivers/edac/Kconfig \
drivers/infiniband/ulp/iser/Kconfig \
drivers/infiniband/ulp/srp/Kconfig \
drivers/infiniband/ulp/ipoib/Kconfig \
drivers/infiniband/hw/nes/Kconfig \
drivers/infiniband/hw/mlx4/Kconfig \
drivers/infiniband/hw/cxgb4/Kconfig \
drivers/infiniband/hw/cxgb3/Kconfig \
drivers/infiniband/hw/amso1100/Kconfig \
drivers/infiniband/hw/ehca/Kconfig \
drivers/infiniband/hw/qib/Kconfig \
drivers/infiniband/hw/ipath/Kconfig \
drivers/infiniband/hw/mthca/Kconfig \
drivers/infiniband/Kconfig \
drivers/accessibility/Kconfig \
drivers/switch/Kconfig \
drivers/felica/Kconfig \
drivers/nfc/Kconfig \
drivers/leds/Kconfig \
drivers/memstick/host/Kconfig \
drivers/memstick/core/Kconfig \
drivers/memstick/Kconfig \
drivers/mmc/host/Kconfig \
drivers/mmc/card/Kconfig \
drivers/mmc/core/Kconfig \
drivers/mmc/Kconfig \
drivers/uwb/Kconfig \
drivers/usb/notify/Kconfig \
drivers/usb/otg/Kconfig \
drivers/usb/gadget/Kconfig \
drivers/usb/atm/Kconfig \
drivers/usb/misc/sisusbvga/Kconfig \
drivers/usb/misc/Kconfig \
drivers/usb/serial/Kconfig \
drivers/usb/image/Kconfig \
drivers/usb/storage/Kconfig \
drivers/usb/class/Kconfig \
drivers/usb/renesas_usbhs/Kconfig \
drivers/usb/musb/Kconfig \
drivers/usb/host/Kconfig \
drivers/usb/wusbcore/Kconfig \
drivers/usb/mon/Kconfig \
drivers/usb/core/Kconfig \
drivers/usb/Kconfig \
drivers/hid/usbhid/Kconfig \
drivers/hid/Kconfig \
sound/oss/Kconfig \
sound/soc/codecs/Kconfig \
sound/soc/msm/Kconfig \
sound/soc/txx9/Kconfig \
sound/soc/tegra/Kconfig \
sound/soc/sh/Kconfig \
sound/soc/s6000/Kconfig \
sound/soc/samsung/Kconfig \
sound/soc/pxa/Kconfig \
sound/soc/mid-x86/Kconfig \
sound/soc/kirkwood/Kconfig \
sound/soc/omap/Kconfig \
sound/soc/nuc900/Kconfig \
sound/soc/jz4740/Kconfig \
sound/soc/imx/Kconfig \
sound/soc/fsl/Kconfig \
sound/soc/ep93xx/Kconfig \
sound/soc/davinci/Kconfig \
sound/soc/blackfin/Kconfig \
sound/soc/au1x/Kconfig \
sound/soc/atmel/Kconfig \
sound/soc/Kconfig \
sound/parisc/Kconfig \
sound/sparc/Kconfig \
sound/pcmcia/Kconfig \
sound/firewire/Kconfig \
sound/usb/Kconfig \
sound/sh/Kconfig \
sound/mips/Kconfig \
sound/spi/Kconfig \
sound/atmel/Kconfig \
sound/arm/Kconfig \
sound/aoa/soundbus/Kconfig \
sound/aoa/codecs/Kconfig \
sound/aoa/fabrics/Kconfig \
sound/aoa/Kconfig \
sound/ppc/Kconfig \
sound/pci/hda/Kconfig \
sound/pci/Kconfig \
sound/isa/Kconfig \
sound/drivers/Kconfig \
sound/core/seq/Kconfig \
sound/core/Kconfig \
sound/oss/dmasound/Kconfig \
sound/Kconfig \
drivers/video/logo/Kconfig \
drivers/video/console/Kconfig \
drivers/video/display/Kconfig \
drivers/video/backlight/Kconfig \
drivers/video/omap2/displays/Kconfig \
drivers/video/omap2/omapfb/Kconfig \
drivers/video/omap2/dss/Kconfig \
drivers/video/omap2/Kconfig \
drivers/video/omap/Kconfig \
drivers/video/msm/mhl_v2/Kconfig \
drivers/video/msm/mhl_v1/Kconfig \
drivers/video/msm/vidc/Kconfig \
drivers/video/msm/Kconfig \
drivers/video/geode/Kconfig \
drivers/gpu/msm/Kconfig \
drivers/gpu/ion/Kconfig \
drivers/gpu/stub/Kconfig \
drivers/gpu/drm/radeon/Kconfig \
drivers/gpu/drm/Kconfig \
drivers/gpu/vga/Kconfig \
drivers/char/agp/Kconfig \
drivers/video/Kconfig \
drivers/media/nmi326/Kconfig \
drivers/media/tdmb/Kconfig \
drivers/media/dvb/frontends/Kconfig \
drivers/media/dvb/ngene/Kconfig \
drivers/media/dvb/mantis/Kconfig \
drivers/media/dvb/pt1/Kconfig \
drivers/media/dvb/firewire/Kconfig \
drivers/media/dvb/dm1105/Kconfig \
drivers/media/dvb/pluto2/Kconfig \
drivers/media/dvb/bt8xx/Kconfig \
drivers/media/dvb/b2c2/Kconfig \
drivers/media/dvb/siano/Kconfig \
drivers/media/dvb/ttusb-dec/Kconfig \
drivers/media/dvb/ttusb-budget/Kconfig \
drivers/media/dvb/dvb-usb/Kconfig \
drivers/media/dvb/ttpci/Kconfig \
drivers/media/dvb/Kconfig \
drivers/media/radio/wl128x/Kconfig \
drivers/media/radio/si470x/Kconfig \
drivers/media/radio/Kconfig \
drivers/media/video/msm_zsl/Kconfig \
drivers/media/video/msm/Kconfig \
drivers/media/video/pwc/Kconfig \
drivers/media/video/sn9c102/Kconfig \
drivers/media/video/et61x251/Kconfig \
drivers/media/video/usbvision/Kconfig \
drivers/media/video/cx231xx/Kconfig \
drivers/media/video/tlg2300/Kconfig \
drivers/media/video/em28xx/Kconfig \
drivers/media/video/hdpvr/Kconfig \
drivers/media/video/pvrusb2/Kconfig \
drivers/media/video/gspca/gl860/Kconfig \
drivers/media/video/gspca/stv06xx/Kconfig \
drivers/media/video/gspca/m5602/Kconfig \
drivers/media/video/gspca/Kconfig \
drivers/media/video/uvc/Kconfig \
drivers/media/video/m5mols/Kconfig \
drivers/media/video/saa7164/Kconfig \
drivers/media/video/cx18/Kconfig \
drivers/media/video/ivtv/Kconfig \
drivers/media/video/au0828/Kconfig \
drivers/media/video/cx23885/Kconfig \
drivers/media/video/cx88/Kconfig \
drivers/media/video/saa7134/Kconfig \
drivers/media/video/zoran/Kconfig \
drivers/media/video/cpia2/Kconfig \
drivers/media/video/bt8xx/Kconfig \
drivers/media/video/omap/Kconfig \
drivers/media/video/davinci/Kconfig \
drivers/media/video/cx25840/Kconfig \
drivers/media/video/Kconfig \
drivers/media/common/tuners/Kconfig \
drivers/media/rc/keymaps/Kconfig \
drivers/media/rc/Kconfig \
drivers/media/common/Kconfig \
drivers/media/Kconfig \
drivers/regulator/Kconfig \
drivers/mfd/Kconfig \
drivers/bcma/Kconfig \
drivers/ssb/Kconfig \
drivers/watchdog/Kconfig \
drivers/thermal/Kconfig \
drivers/hwmon/Kconfig \
drivers/power/Kconfig \
drivers/w1/slaves/Kconfig \
drivers/w1/masters/Kconfig \
drivers/w1/Kconfig \
drivers/gpio/Kconfig \
drivers/ptp/Kconfig \
drivers/pps/generators/Kconfig \
drivers/pps/clients/Kconfig \
drivers/pps/Kconfig \
drivers/slimbus/Kconfig \
drivers/spi/Kconfig \
drivers/i2c/busses/Kconfig \
drivers/i2c/algos/Kconfig \
drivers/i2c/muxes/Kconfig \
drivers/i2c/Kconfig \
drivers/s390/char/Kconfig \
drivers/char/tpm/Kconfig \
drivers/char/pcmcia/Kconfig \
drivers/char/hw_random/Kconfig \
drivers/char/ipmi/Kconfig \
drivers/tty/hvc/Kconfig \
drivers/char/diag/Kconfig \
drivers/tty/serial/Kconfig \
drivers/tty/Kconfig \
drivers/char/Kconfig \
drivers/input/gameport/Kconfig \
drivers/input/serio/Kconfig \
drivers/input/misc/Kconfig \
drivers/input/touchscreen/Kconfig \
drivers/input/tablet/Kconfig \
drivers/input/joystick/iforce/Kconfig \
drivers/input/joystick/Kconfig \
drivers/input/mouse/Kconfig \
drivers/input/keyboard/cypress_touchkey/Kconfig \
drivers/input/keyboard/Kconfig \
drivers/input/Kconfig \
drivers/telephony/Kconfig \
drivers/isdn/hardware/mISDN/Kconfig \
drivers/isdn/mISDN/Kconfig \
drivers/isdn/hysdn/Kconfig \
drivers/isdn/gigaset/Kconfig \
drivers/isdn/hardware/eicon/Kconfig \
drivers/isdn/hardware/avm/Kconfig \
drivers/isdn/hardware/Kconfig \
drivers/isdn/capi/Kconfig \
drivers/isdn/act2000/Kconfig \
drivers/isdn/sc/Kconfig \
drivers/isdn/pcbit/Kconfig \
drivers/isdn/icn/Kconfig \
drivers/isdn/hisax/Kconfig \
drivers/isdn/i4l/Kconfig \
drivers/isdn/Kconfig \
drivers/net/caif/Kconfig \
drivers/s390/net/Kconfig \
drivers/ieee802154/Kconfig \
drivers/atm/Kconfig \
drivers/net/wan/Kconfig \
drivers/net/pcmcia/Kconfig \
drivers/net/usb/Kconfig \
drivers/net/wimax/i2400m/Kconfig \
drivers/net/wimax/Kconfig \
drivers/net/wireless/mwifiex/Kconfig \
drivers/net/wireless/zd1211rw/Kconfig \
drivers/net/wireless/wl12xx/Kconfig \
drivers/net/wireless/wl1251/Kconfig \
drivers/net/wireless/rtlwifi/Kconfig \
drivers/net/wireless/rt2x00/Kconfig \
drivers/net/wireless/p54/Kconfig \
drivers/net/wireless/orinoco/Kconfig \
drivers/net/wireless/libertas/Kconfig \
drivers/net/wireless/iwmc3200wifi/Kconfig \
drivers/net/wireless/iwlegacy/Kconfig \
drivers/net/wireless/iwlwifi/Kconfig \
drivers/net/wireless/ipw2x00/Kconfig \
drivers/net/wireless/hostap/Kconfig \
drivers/net/wireless/bcmdhd/Kconfig \
drivers/net/wireless/bcm4329/Kconfig \
drivers/net/wireless/b43legacy/Kconfig \
drivers/net/wireless/b43/Kconfig \
drivers/net/wireless/ath/carl9170/Kconfig \
drivers/net/wireless/ath/ath9k/Kconfig \
drivers/net/wireless/ath/ath5k/Kconfig \
drivers/net/wireless/ath/Kconfig \
drivers/net/wireless/rtl818x/Kconfig \
drivers/net/wireless/Kconfig \
drivers/net/tokenring/Kconfig \
drivers/net/benet/Kconfig \
drivers/net/sfc/Kconfig \
drivers/net/stmmac/Kconfig \
drivers/net/ixp2000/Kconfig \
drivers/net/octeon/Kconfig \
drivers/net/fs_enet/Kconfig \
drivers/net/ibm_newemac/Kconfig \
drivers/net/tulip/Kconfig \
drivers/net/arm/Kconfig \
drivers/net/phy/Kconfig \
drivers/net/arcnet/Kconfig \
drivers/net/Kconfig \
drivers/macintosh/Kconfig \
drivers/message/i2o/Kconfig \
drivers/firewire/Kconfig \
drivers/message/fusion/Kconfig \
drivers/target/tcm_fc/Kconfig \
drivers/target/loopback/Kconfig \
drivers/target/Kconfig \
drivers/md/Kconfig \
drivers/ata/Kconfig \
drivers/scsi/osd/Kconfig \
drivers/scsi/device_handler/Kconfig \
drivers/scsi/pcmcia/Kconfig \
drivers/scsi/arm/Kconfig \
drivers/scsi/qla4xxx/Kconfig \
drivers/scsi/qla2xxx/Kconfig \
drivers/scsi/mpt2sas/Kconfig \
drivers/scsi/megaraid/Kconfig.megaraid \
drivers/scsi/mvsas/Kconfig \
drivers/scsi/aic94xx/Kconfig \
drivers/scsi/aic7xxx/Kconfig.aic79xx \
drivers/scsi/aic7xxx/Kconfig.aic7xxx \
drivers/scsi/be2iscsi/Kconfig \
drivers/scsi/bnx2fc/Kconfig \
drivers/scsi/bnx2i/Kconfig \
drivers/scsi/cxgbi/cxgb4i/Kconfig \
drivers/scsi/cxgbi/cxgb3i/Kconfig \
drivers/scsi/cxgbi/Kconfig \
drivers/scsi/libsas/Kconfig \
drivers/scsi/Kconfig \
drivers/ide/Kconfig \
drivers/misc/yas532/orientation/Kconfig \
drivers/misc/yas532/geomagnetic/Kconfig \
drivers/misc/yas532/accelerometer/Kconfig \
drivers/misc/yas532/Kconfig \
drivers/misc/inv_mpu/compass/Kconfig \
drivers/misc/inv_mpu/accel/Kconfig \
drivers/misc/inv_mpu/Kconfig \
drivers/misc/carma/Kconfig \
drivers/misc/lis3lv02d/Kconfig \
drivers/misc/ti-st/Kconfig \
drivers/misc/iwmc3200top/Kconfig \
drivers/misc/cb710/Kconfig \
drivers/misc/eeprom/Kconfig \
drivers/misc/c2port/Kconfig \
drivers/misc/Kconfig \
drivers/sensors/core/Kconfig \
drivers/sensors/Kconfig \
drivers/s390/block/Kconfig \
drivers/block/drbd/Kconfig \
drivers/block/paride/Kconfig \
drivers/block/Kconfig \
drivers/pnp/pnpacpi/Kconfig \
drivers/pnp/pnpbios/Kconfig \
drivers/pnp/isapnp/Kconfig \
drivers/pnp/Kconfig \
drivers/parport/Kconfig \
drivers/of/Kconfig \
drivers/mtd/ubi/Kconfig \
drivers/mtd/lpddr/Kconfig \
drivers/mtd/onenand/Kconfig \
drivers/mtd/nand/Kconfig \
drivers/mtd/devices/Kconfig \
drivers/mtd/maps/Kconfig \
drivers/mtd/chips/Kconfig \
drivers/mtd/Kconfig \
drivers/connector/Kconfig \
drivers/base/Kconfig \
drivers/Kconfig \
net/ceph/Kconfig \
net/caif/Kconfig \
net/9p/Kconfig \
net/rfkill/Kconfig \
net/wimax/Kconfig \
net/mac80211/Kconfig \
net/wireless/Kconfig \
net/rxrpc/Kconfig \
net/bluetooth_mgmt/hidp/Kconfig \
net/bluetooth_mgmt/cmtp/Kconfig \
net/bluetooth_mgmt/bnep/Kconfig \
net/bluetooth_mgmt/rfcomm/Kconfig \
net/bluetooth_mgmt/Kconfig \
drivers/bluetooth/Kconfig \
net/bluetooth/hidp/Kconfig \
net/bluetooth/cmtp/Kconfig \
net/bluetooth/bnep/Kconfig \
net/bluetooth/rfcomm/Kconfig \
net/bluetooth/Kconfig \
drivers/net/irda/Kconfig \
net/irda/ircomm/Kconfig \
net/irda/irnet/Kconfig \
net/irda/irlan/Kconfig \
net/irda/Kconfig \
drivers/net/can/softing/Kconfig \
drivers/net/can/usb/Kconfig \
drivers/net/can/c_can/Kconfig \
drivers/net/can/sja1000/Kconfig \
drivers/net/can/mscan/Kconfig \
drivers/net/can/Kconfig \
net/can/Kconfig \
drivers/net/hamradio/Kconfig \
net/ax25/Kconfig \
net/batman-adv/Kconfig \
net/dns_resolver/Kconfig \
net/dcb/Kconfig \
net/sched/Kconfig \
net/ieee802154/Kconfig \
net/phonet/Kconfig \
net/wanrouter/Kconfig \
net/econet/Kconfig \
net/lapb/Kconfig \
net/x25/Kconfig \
drivers/net/appletalk/Kconfig \
net/ipx/Kconfig \
net/llc/Kconfig \
net/decnet/Kconfig \
net/8021q/Kconfig \
net/dsa/Kconfig \
net/bridge/Kconfig \
net/802/Kconfig \
net/l2tp/Kconfig \
net/atm/Kconfig \
net/tipc/Kconfig \
net/rds/Kconfig \
net/sctp/Kconfig \
net/dccp/ccids/Kconfig \
net/dccp/Kconfig \
net/bridge/netfilter/Kconfig \
net/decnet/netfilter/Kconfig \
net/ipv6/netfilter/Kconfig \
net/ipv4/netfilter/Kconfig \
net/netfilter/ipvs/Kconfig \
net/netfilter/ipset/Kconfig \
net/netfilter/Kconfig \
net/netlabel/Kconfig \
net/ipv6/Kconfig \
net/ipv4/Kconfig \
net/iucv/Kconfig \
net/xfrm/Kconfig \
net/unix/Kconfig \
net/packet/Kconfig \
net/Kconfig \
kernel/power/Kconfig \
fs/Kconfig.binfmt \
drivers/cpuidle/Kconfig \
drivers/cpufreq/Kconfig.x86 \
drivers/cpufreq/Kconfig \
mm/Kconfig \
kernel/Kconfig.preempt \
kernel/time/Kconfig \
drivers/pcmcia/Kconfig \
drivers/pci/Kconfig \
arch/arm/common/Kconfig \
arch/arm/Kconfig-nommu \
arch/arm/mm/Kconfig \
arch/arm/mach-w90x900/Kconfig \
arch/arm/mach-vt8500/Kconfig \
arch/arm/plat-versatile/Kconfig \
arch/arm/mach-vexpress/Kconfig \
arch/arm/mach-versatile/Kconfig \
arch/arm/mach-ux500/Kconfig \
arch/arm/mach-u300/Kconfig \
arch/arm/mach-tegra/Kconfig \
drivers/sh/intc/Kconfig \
drivers/sh/Kconfig \
arch/arm/mach-shmobile/Kconfig \
arch/arm/mach-exynos4/Kconfig \
arch/arm/mach-s5pv210/Kconfig \
arch/arm/mach-s5pc100/Kconfig \
arch/arm/mach-s5p64x0/Kconfig \
arch/arm/mach-s3c64xx/Kconfig \
arch/arm/mach-s3c2443/Kconfig \
arch/arm/mach-s3c2440/Kconfig \
arch/arm/mach-s3c2416/Kconfig \
arch/arm/mach-s3c2412/Kconfig \
arch/arm/mach-s3c2410/Kconfig \
arch/arm/mach-s3c2400/Kconfig \
arch/arm/mach-tcc8k/Kconfig \
arch/arm/plat-tcc/Kconfig \
arch/arm/mach-spear6xx/Kconfig \
arch/arm/mach-spear3xx/Kconfig \
arch/arm/plat-spear/Kconfig \
arch/arm/plat-s5p/Kconfig \
arch/arm/plat-s3c24xx/Kconfig \
arch/arm/plat-samsung/Kconfig \
arch/arm/mach-sa1100/Kconfig \
arch/arm/mach-realview/Kconfig \
arch/arm/mach-mmp/Kconfig \
arch/arm/plat-pxa/Kconfig \
arch/arm/mach-pxa/Kconfig \
arch/arm/mach-orion5x/Kconfig \
arch/arm/mach-omap2/Kconfig \
arch/arm/mach-omap1/Kconfig \
arch/arm/plat-omap/Kconfig \
arch/arm/mach-nuc93x/Kconfig \
arch/arm/plat-nomadik/Kconfig \
arch/arm/mach-nomadik/Kconfig \
arch/arm/mach-netx/Kconfig \
arch/arm/mach-mxs/devices/Kconfig \
arch/arm/mach-mxs/Kconfig \
arch/arm/mach-mx5/Kconfig \
arch/arm/mach-imx/Kconfig \
arch/arm/plat-mxc/devices/Kconfig \
arch/arm/plat-mxc/Kconfig \
arch/arm/mach-mv78xx0/Kconfig \
arch/arm/mach-msm/Kconfig \
arch/arm/mach-lpc32xx/Kconfig \
arch/arm/mach-loki/Kconfig \
arch/arm/mach-ks8695/Kconfig \
arch/arm/mach-kirkwood/Kconfig \
arch/arm/mach-ixp23xx/Kconfig \
arch/arm/mach-ixp2000/Kconfig \
arch/arm/mach-ixp4xx/Kconfig \
arch/arm/mach-iop13xx/Kconfig \
arch/arm/mach-iop33x/Kconfig \
arch/arm/mach-iop32x/Kconfig \
arch/arm/mach-integrator/Kconfig \
arch/arm/mach-h720x/Kconfig \
arch/arm/mach-gemini/Kconfig \
arch/arm/mach-footbridge/Kconfig \
arch/arm/mach-ep93xx/Kconfig \
arch/arm/mach-dove/Kconfig \
arch/arm/mach-davinci/Kconfig \
arch/arm/mach-cns3xxx/Kconfig \
arch/arm/mach-clps711x/Kconfig \
arch/arm/mach-bcmring/Kconfig \
arch/arm/mach-at91/Kconfig \
kernel/Kconfig.freezer \
kernel/Kconfig.locks \
block/Kconfig.iosched \
block/Kconfig \
kernel/gcov/Kconfig \
arch/Kconfig \
usr/Kconfig \
kernel/irq/Kconfig \
init/Kconfig \
arch/arm/Kconfig \
Kconfig
include/config/auto.conf: \
$(deps_config)
ifneq "$(KERNELVERSION)" "3.0.31"
include/config/auto.conf: FORCE
endif
ifneq "$(ARCH)" "arm"
include/config/auto.conf: FORCE
endif
ifneq "$(SRCARCH)" "arm"
include/config/auto.conf: FORCE
endif
$(deps_config): ;
| evil1art/s3kernel | include/config/auto.conf.cmd | bat | gpl-2.0 | 21,166 |
@ECHO OFF
rem ******************************************************************************
rem * Copyright 2010-2011 XhmikosR
rem *
rem * This file is part of Regshot.
rem *
rem * Regshot is free software; you can redistribute it and/or modify
rem * it under the terms of the GNU General Public License as published by
rem * the Free Software Foundation; either version 2 of the License, or
rem * (at your option) any later version.
rem *
rem * Regshot is distributed in the hope that it will be useful,
rem * but WITHOUT ANY WARRANTY; without even the implied warranty of
rem * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem * GNU General Public License for more details.
rem *
rem * You should have received a copy of the GNU General Public License
rem * along with Regshot; if not, write to the Free Software
rem * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
rem *
rem *
rem * make_packages.bat
rem * Batch file for building Regshot with WDK and creating the zip packages
rem ******************************************************************************
SETLOCAL
CD /D %~dp0
rem Check for the help switches
IF /I "%~1" == "help" GOTO SHOWHELP
IF /I "%~1" == "/help" GOTO SHOWHELP
IF /I "%~1" == "-help" GOTO SHOWHELP
IF /I "%~1" == "--help" GOTO SHOWHELP
IF /I "%~1" == "/?" GOTO SHOWHELP
rem Check for the first switch
IF "%~1" == "" (
SET INPUTDIRx86=bin\WDK\Release_Win32
SET INPUTDIRx64=bin\WDK\Release_x64
SET SUFFIX=_WDK
) ELSE (
IF /I "%~1" == "WDK" (
SET INPUTDIRx86=bin\WDK\Release_Win32
SET INPUTDIRx64=bin\WDK\Release_x64
SET SUFFIX=_WDK
GOTO START
)
IF /I "%~1" == "/WDK" (
SET INPUTDIRx86=bin\WDK\Release_Win32
SET INPUTDIRx64=bin\WDK\Release_x64
SET SUFFIX=_WDK
GOTO START
)
IF /I "%~1" == "-WDK" (
SET INPUTDIRx86=bin\WDK\Release_Win32
SET INPUTDIRx64=bin\WDK\Release_x64
SET SUFFIX=_WDK
GOTO START
)
IF /I "%~1" == "--WDK" (
SET INPUTDIRx86=bin\WDK\Release_Win32
SET INPUTDIRx64=bin\WDK\Release_x64
SET SUFFIX=_WDK
GOTO START
)
IF /I "%~1" == "VS2010" (
SET INPUTDIRx86=bin\VS2010\Release_Win32
SET INPUTDIRx64=bin\VS2010\Release_x64
SET SUFFIX=_VS2010
GOTO START
)
IF /I "%~1" == "/VS2010" (
SET INPUTDIRx86=bin\VS2010\Release_Win32
SET INPUTDIRx64=bin\VS2010\Release_x64
SET SUFFIX=_VS2010
GOTO START
)
IF /I "%~1" == "-VS2010" (
SET INPUTDIRx86=bin\VS2010\Release_Win32
SET INPUTDIRx64=bin\VS2010\Release_x64
SET SUFFIX=_VS2010
GOTO START
)
IF /I "%~1" == "--VS2010" (
SET INPUTDIRx86=bin\VS2010\Release_Win32
SET INPUTDIRx64=bin\VS2010\Release_x64
SET SUFFIX=_VS2010
GOTO START
)
IF /I "%~1" == "VS2008" (
SET INPUTDIRx86=bin\VS2008\Release_Win32
SET INPUTDIRx64=bin\VS2008\Release_x64
SET SUFFIX=_VS2008
GOTO START
)
IF /I "%~1" == "/VS2008" (
SET INPUTDIRx86=bin\VS2008\Release_Win32
SET INPUTDIRx64=bin\VS2008\Release_x64
SET SUFFIX=_VS2008
GOTO START
)
IF /I "%~1" == "-VS2008" (
SET INPUTDIRx86=bin\VS2008\Release_Win32
SET INPUTDIRx64=bin\VS2008\Release_x64
SET SUFFIX=_VS2008
GOTO START
)
IF /I "%~1" == "--VS2008" (
SET INPUTDIRx86=bin\VS2008\Release_Win32
SET INPUTDIRx64=bin\VS2008\Release_x64
SET SUFFIX=_VS2008
GOTO START
)
IF /I "%~1" == "ICL12" (
SET INPUTDIRx86=bin\ICL12\Release_Win32
SET INPUTDIRx64=bin\ICL12\Release_x64
SET SUFFIX=_ICL12
GOTO START
)
IF /I "%~1" == "/ICL12" (
SET INPUTDIRx86=bin\ICL12\Release_Win32
SET INPUTDIRx64=bin\ICL12\Release_x64
SET SUFFIX=_ICL12
GOTO START
)
IF /I "%~1" == "-ICL12" (
SET INPUTDIRx86=bin\ICL12\Release_Win32
SET INPUTDIRx64=bin\ICL12\Release_x64
SET SUFFIX=_ICL12
GOTO START
)
IF /I "%~1" == "--ICL12" (
SET INPUTDIRx86=bin\ICL12\Release_Win32
SET INPUTDIRx64=bin\ICL12\Release_x64
SET SUFFIX=_ICL12
GOTO START
)
IF /I "%~1" == "GCC" (
SET INPUTDIRx86=bin\GCC\Release_Win32
SET INPUTDIRx64=bin\GCC\Release_x64
SET SUFFIX=_GCC
GOTO START
)
IF /I "%~1" == "/GCC" (
SET INPUTDIRx86=bin\GCC\Release_Win32
SET INPUTDIRx64=bin\GCC\Release_x64
SET SUFFIX=_GCC
GOTO START
)
IF /I "%~1" == "-GCC" (
SET INPUTDIRx86=bin\GCC\Release_Win32
SET INPUTDIRx64=bin\GCC\Release_x64
SET SUFFIX=_GCC
GOTO START
)
IF /I "%~1" == "--GCC" (
SET INPUTDIRx86=bin\GCC\Release_Win32
SET INPUTDIRx64=bin\GCC\Release_x64
SET SUFFIX=_GCC
GOTO START
)
ECHO.
ECHO Unsupported commandline switch!
ECHO Run "%~nx0 help" for details about the commandline switches.
CALL :SUBMSG "ERROR" "Compilation failed!"
)
:START
SET "TEMP_NAME=temp_zip%SUFFIX%"
IF NOT EXIST "..\%INPUTDIRx86%\Regshot.exe" CALL :SUBMSG "ERROR" "Compile Regshot Win32 first!"
IF NOT EXIST "..\%INPUTDIRx64%\Regshot.exe" CALL :SUBMSG "ERROR" "Compile Regshot x64 first!"
CALL :SubGetVersion
CALL :SubZipFiles %INPUTDIRx86% Win32
CALL :SubZipFiles %INPUTDIRx64% x64
:END
TITLE Finished!
ECHO.
ENDLOCAL
PAUSE
EXIT /B
:SubZipFiles
TITLE Creating the %2 ZIP file...
CALL :SUBMSG "INFO" "Creating the %2 ZIP file..."
IF EXIST "%TEMP_NAME%" RD /S /Q "%TEMP_NAME%"
IF NOT EXIST "%TEMP_NAME%" MD "%TEMP_NAME%"
COPY /Y /V "..\license_lgpl-2.1.txt" "%TEMP_NAME%\License.txt"
COPY /Y /V "..\files\history.txt" "%TEMP_NAME%\History.txt"
COPY /Y /V "..\files\language.ini" "%TEMP_NAME%\"
COPY /Y /V "..\files\readme.txt" "%TEMP_NAME%\Readme.txt"
COPY /Y /V "..\files\regshot.ini" "%TEMP_NAME%\"
COPY /Y /V "..\%1\Regshot.exe" "%TEMP_NAME%\"
PUSHD "%TEMP_NAME%"
START "" /B /WAIT "..\..\files\7za.exe" a -tzip -mx=9 "Regshot_%REGSHOTVER%_%2%SUFFIX%.zip" >NUL
IF %ERRORLEVEL% NEQ 0 CALL :SUBMSG "ERROR" "Compilation failed!"
CALL :SUBMSG "INFO" "Regshot_%REGSHOTVER%_%2%SUFFIX%.zip created successfully!"
MOVE /Y "Regshot_%REGSHOTVER%_%2%SUFFIX%.zip" "..\" >NUL
POPD
IF EXIST "%TEMP_NAME%" RD /S /Q "%TEMP_NAME%"
EXIT /B
:SubGetVersion
rem Get the version
FOR /F "tokens=3,4 delims= " %%K IN (
'FINDSTR /I /L /C:"define REGSHOT_VERSION_MAJOR" "..\src\version.h"') DO (
SET "VerMajor=%%K"&Call :SubVerMajor %%VerMajor:*Z=%%)
FOR /F "tokens=3,4 delims= " %%L IN (
'FINDSTR /I /L /C:"define REGSHOT_VERSION_MINOR" "..\src\version.h"') DO (
SET "VerMinor=%%L"&Call :SubVerMinor %%VerMinor:*Z=%%)
FOR /F "tokens=3,4 delims= " %%M IN (
'FINDSTR /I /L /C:"define REGSHOT_VERSION_PATCH" "..\src\version.h"') DO (
SET "VerBuild=%%M"&Call :SubVerBuild %%VerBuild:*Z=%%)
FOR /F "tokens=3,4 delims= " %%N IN (
'FINDSTR /I /L /C:"define REGSHOT_VERSION_REV" "..\src\VersionRev.h"') DO (
SET "VerRev=%%N"&Call :SubVerRev %%VerRev:*Z=%%)
SET REGSHOTVER=%VerMajor%.%VerMinor%.%VerBuild%_r%VerRev%
EXIT /B
:SubVerMajor
SET VerMajor=%*
EXIT /B
:SubVerMinor
SET VerMinor=%*
EXIT /B
:SubVerBuild
SET VerBuild=%*
EXIT /B
:SubVerRev
SET VerRev=%*
EXIT /B
:SHOWHELP
TITLE "%~nx0 %1"
ECHO. & ECHO.
ECHO Usage: %~nx0 [GCC^|ICL12^|VS2008^|VS2010^|WDK]
ECHO.
ECHO Notes: You can also prefix the commands with "-", "--" or "/".
ECHO The arguments are not case sensitive.
ECHO. & ECHO.
ECHO Executing "%~nx0" will use the defaults: "%~nx0 WDK"
ECHO.
ENDLOCAL
EXIT /B
:SUBMSG
ECHO. & ECHO ______________________________
ECHO [%~1] %~2
ECHO ______________________________ & ECHO.
IF /I "%~1"=="ERROR" (
PAUSE
EXIT
) ELSE (
EXIT /B
)
| batteryshark/regshot | build/make_zip.bat | bat | lgpl-2.1 | 7,771 |
@echo off
rem MSVC100FREEOPTS.BAT
rem
rem Compile and link options used for building MEX-files
rem using the Microsoft Visual C++ Express compiler version 10.0
rem
rem $Revision: 1.1.12.2 $ $Date: 2010/09/02 12:40:43 $
rem Copyright 2010 The MathWorks, Inc.
rem
rem StorageVersion: 1.0
rem C++keyFileName: MSVC100FREEOPTS.BAT
rem C++keyName: Microsoft Visual C++ 2010 Express
rem C++keyManufacturer: Microsoft
rem C++keyVersion: 10.0
rem C++keyLanguage: C++
rem
rem ********************************************************************
rem General parameters
rem ********************************************************************
set MATLAB=%MATLAB%
set VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio 10.0
set VCINSTALLDIR=%VSINSTALLDIR%\VC
rem In this case, LINKERDIR is being used to specify the location of the SDK
set LINKERDIR=C:\Program Files\Microsoft SDKs\Windows\v7.1\
set PATH=%VSINSTALLDIR%\Common7\IDE;%VSINSTALLDIR%\Common7\Tools;%VCINSTALLDIR%\bin\amd64;%VCINSTALLDIR%\bin\VCPackages;%LINKERDIR%\Bin\NETFX 4.0 Tools\x64;%LINKERDIR%\Bin\x64;%LINKERDIR%\bin;%MATLAB_BIN%;%PATH%
set INCLUDE=%VCINSTALLDIR%\INCLUDE;%LINKERDIR%\include;%LINKERDIR%\include\gl;%INCLUDE%
set LIB=%VCINSTALLDIR%\LIB\amd64;%LINKERDIR%\lib\x64;%VCINSTALLDIR%\LIB;%MATLAB%\extern\lib\win64;%LIB%
set MW_TARGET_ARCH=win64
rem ********************************************************************
rem Compiler parameters
rem ********************************************************************
set COMPILER=cl
set COMPFLAGS=/c /Zp8 /GR /W3 /EHs /D_CRT_SECURE_NO_DEPRECATE /D_SCL_SECURE_NO_DEPRECATE /D_SECURE_SCL=0 /DMATLAB_MEX_FILE /nologo /MD
set OPTIMFLAGS=/O2 /Oy- /DNDEBUG
set DEBUGFLAGS=/Z7
set NAME_OBJECT=/Fo
rem ********************************************************************
rem Linker parameters
rem ********************************************************************
set LIBLOC=%MATLAB%\extern\lib\win64\microsoft
set LINKER=link
set LINKFLAGS=/dll /export:%ENTRYPOINT% /LIBPATH:"%LIBLOC%" libmx.lib libmex.lib libmat.lib /MACHINE:X64 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /manifest /incremental:NO /implib:"%LIB_NAME%.x" /MAP:"%OUTDIR%%MEX_NAME%%MEX_EXT%.map"
set LINKOPTIMFLAGS=
set LINKDEBUGFLAGS=/debug /PDB:"%OUTDIR%%MEX_NAME%%MEX_EXT%.pdb"
set LINK_FILE=
set LINK_LIB=
set NAME_OUTPUT=/out:"%OUTDIR%%MEX_NAME%%MEX_EXT%"
set RSP_FILE_INDICATOR=@
rem ********************************************************************
rem Resource compiler parameters
rem ********************************************************************
set RC_COMPILER=rc /fo "%OUTDIR%mexversion.res"
set RC_LINKER=
set POSTLINK_CMDS=del "%LIB_NAME%.x" "%LIB_NAME%.exp"
set POSTLINK_CMDS1=mt -outputresource:"%OUTDIR%%MEX_NAME%%MEX_EXT%;2" -manifest "%OUTDIR%%MEX_NAME%%MEX_EXT%.manifest"
set POSTLINK_CMDS2=del "%OUTDIR%%MEX_NAME%%MEX_EXT%.manifest"
set POSTLINK_CMDS3=del "%OUTDIR%%MEX_NAME%%MEX_EXT%.map"
| guiccbr/autonomous-fuzzy-quadcopter | matlab/slprj/_sfprj/quadcopter_sim/_self/sfun/src/mexopts.bat | bat | mit | 3,029 |
python "%~dp0../Cpp2KL/build.py" "%~dp0Fabric2Arnold.cfg.py"
scons
| tadevelopment/fabric2arnold | build.bat | bat | mit | 67 |
echo off
set RHAP_JARS_DIR=C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib
set FRAMEWORK_NONE_JARS=C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\oxf.jar;C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\anim.jar;C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\animcom.jar;C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\oxfInstMock.jar;
set FRAMEWORK_ANIM_JARS=C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\oxf.jar;C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\anim.jar;C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\animcom.jar;C:/ProgramData/IBM/Rational/Rhapsody/8.1.1/Share\LangJava\lib\oxfInst.jar;
set SOURCEPATH=%SOURCEPATH%
set CLASSPATH=%CLASSPATH%;.
set PATH=%RHAP_JARS_DIR%;%PATH%;
set INSTRUMENTATION=Animation
set BUILDSET=Debug
if %INSTRUMENTATION%==Animation goto anim
:noanim
set CLASSPATH=%CLASSPATH%;%FRAMEWORK_NONE_JARS%
goto setEnv_end
:anim
set CLASSPATH=%CLASSPATH%;%FRAMEWORK_ANIM_JARS%
:setEnv_end
if "%1" == "" goto compile
if "%1" == "build" goto compile
if "%1" == "clean" goto clean
if "%1" == "rebuild" goto clean
if "%1" == "run" goto run
:clean
echo cleaning class files
if exist MainDefaultComponent.class del MainDefaultComponent.class
if exist Default\EventIntervention.class del Default\EventIntervention.class
if exist Default\Temoin.class del Default\Temoin.class
if exist Default\EventUrgenceRecu.class del Default\EventUrgenceRecu.class
if exist Default\EventMessageRelaye.class del Default\EventMessageRelaye.class
if exist Default\VaHopital.class del Default\VaHopital.class
if exist Default\EventCamionPompierArrive.class del Default\EventCamionPompierArrive.class
if exist Default\CentreGestionMessage.class del Default\CentreGestionMessage.class
if exist Default\EventDecouvreVictime.class del Default\EventDecouvreVictime.class
if exist Default\CentreTraitementUrgence.class del Default\CentreTraitementUrgence.class
if exist Default\EventVaHopital.class del Default\EventVaHopital.class
if exist Default\EventPasIntervention.class del Default\EventPasIntervention.class
if exist Default\EventMessageRecu.class del Default\EventMessageRecu.class
if exist Default\Pompier.class del Default\Pompier.class
if exist Default\Victime.class del Default\Victime.class
if exist Default\CamionPompier.class del Default\CamionPompier.class
if exist Default\EventEnvoieCamionPompier.class del Default\EventEnvoieCamionPompier.class
if exist Default\Default_pkgClass.class del Default\Default_pkgClass.class
if "%1" == "clean" goto end
:compile
if %BUILDSET%==Debug goto compile_debug
echo compiling JAVA source files
javac @files.lst
goto end
:compile_debug
echo compiling JAVA source files
javac -g @files.lst
goto end
:run
java %2
:end
| Etiene/nuitdelinfo | code_rhapsody/AccidentSimple/DefaultComponent/DefaultConfig/DefaultComponent.bat | bat | mit | 2,812 |
%nuget% restore GladNet.Lidgren.sln
%nuget% update GladNet.Lidgren.sln -noninteractive
| HelloKitty/GladNet2-Lidgren | pre-MyGet.bat | bat | mit | 87 |
cd D:\C\Program Files\VirtualBox
VBoxManage startvm "ZWIN10_MAIN" --type gui | zollty/tool-libs | BatchFile/vbox/startWIN10.bat | bat | mit | 76 |
:: compile IconExtractor.cs as a 32-bit library
:: and register IconExtractor.dll for 64-bit and 32-bit apps
@echo off
call ..\config\exeLocations.bat
if %1.==/unregister. (
set verb=Unregistering
) else (
echo. & echo Compiling IconExtractor.dll
%net32%\csc.exe @..\rsp\_common.rsp @..\rsp\IconExtractor.rsp ..\IconExtractor.cs
set verb=Registering
)
echo %verb% IconExtractor.dll for 32-bit apps
%net32%\regasm.exe /codebase %1 ..\lib\IconExtractor.dll
if exist %net64% (
echo. & echo %verb% IconExtractor.dll for 64-bit apps
%net64%\regasm.exe /codebase %1 ..\lib\IconExtractor.dll
)
| koswald/VBScript | .Net/build/IconExtractor.bat | bat | mit | 613 |
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe /u SnagitJiraOutputAccessory.dll
| ryanewtaylor/snagit-jira-output-accessory | SnagitJiraOutputAccessory/Unregister.bat | bat | mit | 92 |
cd C:\Users\18nleung\Documents\Other\CodeProjects\CTF
node server
pause | nathanhleung/NodeCTF | init/server.bat | bat | mit | 71 |
@echo off
setLocal EnableExtensions EnableDelayedExpansion
set LEIN_VERSION=2.8.1
set HTTP_CLIENT=curl -f -L -k -o
if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
set SNAPSHOT=YES
) else (
set SNAPSHOT=NO
)
set ORIGINAL_PWD=%CD%
:: If ORIGINAL_PWD ends with a backslash (such as C:\),
:: we need to escape it with a second backslash.
if "%ORIGINAL_PWD:~-1%x" == "\x" set "ORIGINAL_PWD=%ORIGINAL_PWD%\"
call :FIND_DIR_CONTAINING_UPWARDS project.clj
if "%DIR_CONTAINING%" neq "" cd "%DIR_CONTAINING%"
:: LEIN_JAR and LEIN_HOME variables can be set manually.
:: Only set LEIN_JAR manually if you know what you are doing.
:: Having LEIN_JAR pointing to one version of Leiningen as well as
:: having a different version in PATH has been known to cause problems.
if "x%LEIN_HOME%" == "x" (
set LEIN_HOME=!USERPROFILE!\.lein
)
SET RC=1
if "x%LEIN_JAR%" == "x" set "LEIN_JAR=!LEIN_HOME!\self-installs\leiningen-!LEIN_VERSION!-standalone.jar"
if "%1" == "self-install" goto SELF_INSTALL
if "%1" == "upgrade" goto UPGRADE
if "%1" == "downgrade" goto UPGRADE
if not exist "%~dp0..\src\leiningen\version.clj" goto RUN_NO_CHECKOUT
:: Running from source checkout.
call :SET_LEIN_ROOT "%~dp0.."
set "bootstrapfile=!LEIN_ROOT!\leiningen-core\.lein-bootstrap"
rem in .lein-bootstrap there is only one line where each path is concatenated to each other via a semicolon, there's no semicolon at the end
rem each path is NOT inside double quotes and may contain spaces (even semicolons but this is not supported here) in their names,
rem but they won't/cannot contain double quotes " or colons : in their names (at least on windows it's not allowed/won't work)
rem tested when folders contain spaces and when LEIN_ROOT contains semicolon
if not "x%DEBUG%" == "x" echo LEIN_ROOT=!LEIN_ROOT!
rem if not "%LEIN_ROOT:;=%" == "%LEIN_ROOT%" (
rem oddly enough /G:/ should've worked but doesn't where / they say it's console
rem findstr is C:\Windows\System32\findstr.exe
echo.!LEIN_ROOT! | findstr /C:";" >nul 2>&1 && (
rem aka errorlevel is 0 aka the string ";" was found
echo Your folder structure !LEIN_ROOT! contains at least one semicolon in its name
echo This is not allowed and would break things with the generated bootstrap file
echo Please correct this by renaming the folders to not contain semicolons in their name
del !bootstrapfile! >nul 2>&1
echo You'll also have to recreate the bootstrap file just to be sure it has semicolon-free names inside
echo the bootstrap file ^(which was just deleted^) is: !bootstrapfile!
echo and the info on how to do that is:
goto RUN_BOOTSTRAP
)
if not exist !bootstrapfile! goto NO_DEPENDENCIES
findstr \^" "!bootstrapfile!" >nul 2>&1
if errorlevel 1 goto PARSE_BOOTSTRAPFILE
echo double quotes detected inside file: !bootstrapfile!
echo this should not be happening
goto RUN_BOOTSTRAP
:PARSE_BOOTSTRAPFILE
rem will proceed to set LEIN_LIBS and surround each path from bootstrap file in double quotes and separate it from others with a semicolon
rem the paths inside the bootstrap file do not already contain double quotes but may contain spaces
rem note worthy: the following won't work due to a hard 1022bytes limit truncation in the variable that was set
rem set /p LEIN_LIBS=<!bootstrapfile!
rem so this will work instead:
rem for /f "usebackq delims=" %%j in (!bootstrapfile!) do set LEIN_LIBS=%%j
rem just set LEIN_LIBS="%%j" is uglier/hacky but would also work here instead of the below:
for /f "usebackq delims=" %%j in ("!bootstrapfile!") do (
set tmpline=%%j
call :PROCESSPATH
)
rem remove trailing semicolon, if any
if "!LEIN_LIBS:~-1!x" == ";x" SET LEIN_LIBS=!LEIN_LIBS:~0,-1!
if not "x%DEBUG%" == "x" echo LEIN_LIBS=!LEIN_LIBS!
if "x!LEIN_LIBS!" == "x" goto NO_DEPENDENCIES
rem semicolons in pathes are not supported, spaces are supported by quoting CLASSPATH as a whole
rem (no end semicolon required)
set CLASSPATH=!LEIN_LIBS!;!LEIN_ROOT!\src;!LEIN_ROOT!\resources
:: Apply context specific CLASSPATH entries
if exist "%~dp0..\.lein-classpath" (
for /f "tokens=* delims= " %%i in ("%~dp0..\.lein-classpath") do (
set CONTEXT_CP=%%i
)
if NOT "x!CONTEXT_CP!"=="x" (
set CLASSPATH=!CONTEXT_CP!;!CLASSPATH!
)
)
goto SETUP_JAVA
:RUN_NO_CHECKOUT
:: Not running from a checkout.
if not exist "%LEIN_JAR%" goto NO_LEIN_JAR
set CLASSPATH=%LEIN_JAR%
if exist ".lein-classpath" (
for /f "tokens=* delims= " %%i in (.lein-classpath) do (
set CONTEXT_CP=%%i
)
if NOT "x!CONTEXT_CP!"=="x" (
set CLASSPATH=!CONTEXT_CP!;!CLASSPATH!
)
)
:SETUP_JAVA
if not "x%DEBUG%" == "x" echo CLASSPATH=!CLASSPATH!
:: ##################################################
if "x!JAVA_CMD!" == "x" set JAVA_CMD=java
if "x!LEIN_JAVA_CMD!" == "x" set LEIN_JAVA_CMD=%JAVA_CMD%
rem remove quotes from around java commands
for /f "usebackq delims=" %%i in ('!JAVA_CMD!') do set JAVA_CMD=%%~i
for /f "usebackq delims=" %%i in ('!LEIN_JAVA_CMD!') do set LEIN_JAVA_CMD=%%~i
if "x%JVM_OPTS%" == "x" set JVM_OPTS=%JAVA_OPTS%
goto RUN
:DownloadFile
set LAST_HTTP_CLIENT=
rem parameters: TargetFileName Address
if "x%HTTP_CLIENT%" == "x" goto TRY_POWERSHELL
%HTTP_CLIENT% %1 %2
SET RC=%ERRORLEVEL%
goto EXITRC
:TRY_POWERSHELL
call powershell -? >nul 2>&1
if NOT ERRORLEVEL 0 goto TRY_WGET
set LAST_HTTP_CLIENT=powershell
powershell -Command "& {param($a,$f) $client = New-Object System.Net.WebClient; $client.Proxy.Credentials =[System.Net.CredentialCache]::DefaultNetworkCredentials; $client.DownloadFile($a, $f)}" ""%2"" ""%1""
SET RC=%ERRORLEVEL%
goto EXITRC
:TRY_WGET
call wget --help >nul 2>&1
if NOT ERRORLEVEL 0 goto TRY_CURL
set LAST_HTTP_CLIENT=wget
call wget -O %1 %2
SET RC=%ERRORLEVEL%
goto EXITRC
:TRY_CURL
call curl --help >nul 2>&1
if NOT ERRORLEVEL 0 GOTO NO_HTTP_CLIENT
rem We set CURL_PROXY to a space character below to pose as a no-op argument
set LAST_HTTP_CLIENT=curl
set CURL_PROXY=
if NOT "x%HTTPS_PROXY%" == "x" set CURL_PROXY="-x %HTTPS_PROXY%"
call curl %CURL_PROXY% -f -L -o %1 %2
SET RC=%ERRORLEVEL%
goto EXITRC
:NO_LEIN_JAR
echo.
echo %LEIN_JAR% can not be found.
echo You can try running "lein self-install"
echo or change LEIN_JAR environment variable
echo or edit lein.bat to set appropriate LEIN_JAR path.
echo.
goto EXITRC
:NO_DEPENDENCIES
echo.
echo Leiningen is missing its dependencies.
:RUN_BOOTSTRAP
echo Please run "lein bootstrap" in the leiningen-core/ directory
echo with a stable release of Leiningen. See CONTRIBUTING.md for details.
echo.
goto EXITRC
:SELF_INSTALL
if exist "%LEIN_JAR%" (
echo %LEIN_JAR% already exists. Delete and retry.
goto EXITRC
)
for %%f in ("%LEIN_JAR%") do set LEIN_INSTALL_DIR="%%~dpf"
if not exist %LEIN_INSTALL_DIR% mkdir %LEIN_INSTALL_DIR%
echo Downloading Leiningen now...
set LEIN_JAR_URL=https://github.com/technomancy/leiningen/releases/download/%LEIN_VERSION%/leiningen-%LEIN_VERSION%-standalone.zip
call :DownloadFile "%LEIN_JAR%.pending" "%LEIN_JAR_URL%"
SET RC=%ERRORLEVEL%
if not %RC% == 0 goto DOWNLOAD_FAILED
if not exist "%LEIN_JAR%.pending" goto DOWNLOAD_FAILED
move /y "%LEIN_JAR%.pending" "%LEIN_JAR%" >nul 2>&1
SET RC=%ERRORLEVEL%
goto EXITRC
:DOWNLOAD_FAILED
SET RC=3
del "%LEIN_JAR%.pending" >nul 2>&1
echo.
echo Failed to download %LEIN_JAR_URL%
echo.
echo It is possible that the download failed due to "powershell",
echo "curl" or "wget"'s inability to retrieve GitHub's security certificate.
echo The suggestions below do not check certificates, so use this only if
echo you understand the security implications of not doing so.
echo.
if "%LAST_HTTP_CLIENT%" == "powershell" (
echo The PowerShell failed to download the latest Leiningen version.
echo Try to use "curl" or "wget" to download Leiningen by setting up
echo the HTTP_CLIENT environment variable with one of the following
echo values:
echo.
echo a^) set HTTP_CLIENT=wget --no-check-certificate -O
echo b^) set HTTP_CLIENT=curl -f -L -k -o
echo.
echo NOTE: Make sure to *not* add double quotes when setting the value
echo of HTTP_CLIENT
)
if "%LAST_HTTP_CLIENT%" == "curl" (
echo Curl failed to download the latest Leiningen version.
echo Try to use "wget" to download Leiningen by setting up
echo the HTTP_CLIENT environment variable with one of the following
echo values:
echo.
echo a^) set HTTP_CLIENT=wget --no-check-certificate -O
echo.
echo NOTE: Make sure to *not* add double quotes when setting the value
echo of HTTP_CLIENT
echo.
echo If neither curl nor wget can download Leiningen, please seek
echo for help on Leiningen's GitHub project issues page.
)
if "%LAST_HTTP_CLIENT%" == "wget" (
echo Curl failed to download the latest Leiningen version.
echo Try to use "wget" to download Leiningen by setting up
echo the HTTP_CLIENT environment variable with one of the following
echo values:
echo.
echo. a^) set HTTP_CLIENT=curl -f -L -k -o
echo.
echo NOTE: make sure *not* to add double quotes to set the value of
echo HTTP_CLIENT
echo.
echo If neither curl nor wget can download Leiningen, please seek
echo for help on Leiningen's GitHub project issues page.
)
if %SNAPSHOT% == YES echo See README.md for SNAPSHOT build instructions.
echo.
goto EOF
:UPGRADE
set LEIN_BAT=%~dp0%~nx0
set TARGET_VERSION=%2
if "x%2" == "x" set TARGET_VERSION=stable
echo The script at %LEIN_BAT% will be upgraded to the latest %TARGET_VERSION% version.
set /P ANSWER=Do you want to continue (Y/N)?
if /i {%ANSWER%}=={y} goto YES_UPGRADE
if /i {%ANSWER%}=={yes} goto YES_UPGRADE
echo Aborted.
goto EXITRC
:YES_UPGRADE
echo Downloading latest Leiningen batch script...
set LEIN_BAT_URL=https://github.com/technomancy/leiningen/raw/%TARGET_VERSION%/bin/lein.bat
set TEMP_BAT=%~dp0temp-lein-%RANDOM%%RANDOM%.bat
call :DownloadFile "%LEIN_BAT%.pending" "%LEIN_BAT_URL%"
if ERRORLEVEL 0 goto EXEC_UPGRADE
del "%LEIN_BAT%.pending" >nul 2>&1
echo Failed to download %LEIN_BAT_URL%
goto EXITRC
:EXEC_UPGRADE
move /y "%LEIN_BAT%.pending" "%TEMP_BAT%" >nul 2>&1
echo.
echo Upgrading...
set LEIN_JAR=
call "%TEMP_BAT%" self-install
(
rem This is self-modifying batch code. Use brackets to pre-load the exit command.
rem This way, script execution does not depend on whether the replacement script
rem has that command at the *very same* file position as the calling batch file.
move /y "%TEMP_BAT%" "%LEIN_BAT%" >nul 2>&1
exit /B %ERRORLEVEL%
)
:NO_HTTP_CLIENT
echo.
echo ERROR: Neither PowerShell, Wget, or Curl could be found.
echo Make sure at least one of these tools is installed
echo and is in PATH. You can get them from URLs below:
echo.
echo PowerShell: "http://www.microsoft.com/powershell"
rem echo Wget: "http://users.ugent.be/~bpuype/wget/"
rem Note: Stale URL. HTTP 404.
rem Alternative: wget64.exe compiled by J. Simoncic, rename to wget.exe
rem MD5 1750c130c5daca8b347d3f7e34824c9b
rem Check: https://www.virustotal.com/en/file/abf507f8240ed41aac74c9df6de558c88c2f11d7770f0298135f1cc544b9c08b/analysis/
echo Wget: "https://eternallybored.org/misc/wget/"
echo Curl: "http://curl.haxx.se/dlwiz/?type=bin&os=Win32&flav=-&ver=2000/XP"
echo.
goto EXITRC
:SET_LEIN_ROOT
set LEIN_ROOT=%~f1
goto EOF
:: Find directory containing filename supplied in first argument
:: looking in current directory, and looking up the parent
:: chain until we find it, or run out
:: returns result in %DIR_CONTAINING%
:: empty string if we don't find it
:FIND_DIR_CONTAINING_UPWARDS
set DIR_CONTAINING=%CD%
set LAST_DIR=
:LOOK_AGAIN
if "%DIR_CONTAINING%" == "%LAST_DIR%" (
:: didn't find it
set DIR_CONTAINING=
goto EOF
)
if EXIST "%DIR_CONTAINING%\%1" (
:: found it - use result in DIR_CONTAINING
goto EOF
)
set LAST_DIR=%DIR_CONTAINING%
call :GET_PARENT_PATH "%DIR_CONTAINING%\.."
set DIR_CONTAINING=%PARENT_PATH%
goto LOOK_AGAIN
:GET_PARENT_PATH
set PARENT_PATH=%~f1
goto EOF
:RUN
:: We need to disable delayed expansion here because the %* variable
:: may contain bangs (as in test!). There may also be special
:: characters inside the TRAMPOLINE_FILE.
setLocal DisableDelayedExpansion
set "TRAMPOLINE_FILE=%TEMP%\lein-trampoline-%RANDOM%.bat"
del "%TRAMPOLINE_FILE%" >nul 2>&1
set ERRORLEVEL=
set RC=0
"%LEIN_JAVA_CMD%" -client %LEIN_JVM_OPTS% ^
-Dclojure.compile.path="%DIR_CONTAINING%/target/classes" ^
-Dleiningen.original.pwd="%ORIGINAL_PWD%" ^
-cp "%CLASSPATH%" clojure.main -m leiningen.core.main %*
SET RC=%ERRORLEVEL%
if not %RC% == 0 goto EXITRC
if not exist "%TRAMPOLINE_FILE%" goto EOF
call "%TRAMPOLINE_FILE%"
del "%TRAMPOLINE_FILE%" >nul 2>&1
goto EOF
:PROCESSPATH
rem will surround each path with double quotes before appending it to LEIN_LIBS
for /f "tokens=1* delims=;" %%a in ("%tmpline%") do (
set LEIN_LIBS=!LEIN_LIBS!"%%a";
set tmpline=%%b
)
if not "%tmpline%" == "" goto PROCESSPATH
goto EOF
:EXITRC
exit /B %RC%
:EOF
| juleswhite/CSX278-DevEnvTest | lein.bat | bat | epl-1.0 | 13,545 |
cmd_fs/ntfs/ntfs.ko := arm-eabi-ld -EL -r -T /home/tim/Downloads/mitchtaydev-Thrive-Shiva-Kernel-ee65d90/linux-2.6/scripts/module-common.lds --build-id -o fs/ntfs/ntfs.ko fs/ntfs/ntfs.o fs/ntfs/ntfs.mod.o
| timmytim/honeybutter_kernel | fs/ntfs/.ntfs.ko.cmd | bat | gpl-2.0 | 207 |
make asuro
| rchicoli/asuro-boot | make.bat | bat | gpl-2.0 | 11 |
cmd_drivers/macintosh/built-in.o := rm -f drivers/macintosh/built-in.o; /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ar rcs drivers/macintosh/built-in.o
| selva-simple/Galaxy-R-Kernel | drivers/macintosh/.built-in.o.cmd | bat | gpl-2.0 | 183 |
cmd_drivers/media/dvb/frontends/tda826x.ko := /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ld -EL -r -T /home/envy/kernel/shinano-sirius_msm8974abpro/scripts/module-common.lds --build-id -o drivers/media/dvb/frontends/tda826x.ko drivers/media/dvb/frontends/tda826x.o drivers/media/dvb/frontends/tda826x.mod.o
| Envious-Data/shinano-sirius_msm8974abpro | drivers/media/dvb/frontends/.tda826x.ko.cmd | bat | gpl-2.0 | 338 |
cmd_libbb/human_readable.o := arm-linux-musleabihf-gcc -Wp,-MD,libbb/.human_readable.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(human_readable)" -D"KBUILD_MODNAME=KBUILD_STR(human_readable)" -c -o libbb/human_readable.o libbb/human_readable.c
deps_libbb/human_readable.o := \
libbb/human_readable.c \
include/libbb.h \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/xz.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/feature/editing/save/on/exit.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/unicode/support.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/clean/up.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \
/Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
libbb/human_readable.o: $(deps_libbb/human_readable.o)
$(deps_libbb/human_readable.o):
| ThinkIntegrate/busybox | libbb/.human_readable.o.cmd | bat | gpl-2.0 | 11,416 |
cmd_net/netfilter/xt_comment.o := arm-eabi-gcc -Wp,-MD,net/netfilter/.xt_comment.o.d -nostdinc -isystem /usr/bin/../lib/gcc/arm-eabi/4.5.0/include -Iinclude -I/home/jacob/source/wildfire-kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=6 -march=armv6 -mtune=arm1136j-s -msoft-float -Uarm -Wframe-larger-than=1024 -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -fno-dwarf2-cfi-asm -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(xt_comment)" -D"KBUILD_MODNAME=KBUILD_STR(xt_comment)" -c -o net/netfilter/xt_comment.o net/netfilter/xt_comment.c
deps_net/netfilter/xt_comment.o := \
net/netfilter/xt_comment.c \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/sysfs.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/posix_types.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/processor.h \
$(wildcard include/config/mmu.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/hwcap.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
include/linux/const.h \
arch/arm/mach-msm/include/mach/memory.h \
$(wildcard include/config/arch/qsd8x50.h) \
$(wildcard include/config/arch/msm7225.h) \
$(wildcard include/config/arch/msm7200a.h) \
$(wildcard include/config/arch/msm7201a.h) \
$(wildcard include/config/arch/msm7x00a.h) \
$(wildcard include/config/mach/desirec.h) \
$(wildcard include/config/arch/msm7227.h) \
$(wildcard include/config/arch/msm/arm11.h) \
$(wildcard include/config/cache/l2x0.h) \
$(wildcard include/config/arch/msm/scorpion.h) \
include/asm/mach-types.h \
$(wildcard include/config/arch/ebsa110.h) \
$(wildcard include/config/arch/rpc.h) \
$(wildcard include/config/arch/nexuspci.h) \
$(wildcard include/config/arch/ebsa285.h) \
$(wildcard include/config/arch/netwinder.h) \
$(wildcard include/config/arch/cats.h) \
$(wildcard include/config/arch/tbox.h) \
$(wildcard include/config/arch/co285.h) \
$(wildcard include/config/arch/clps7110.h) \
$(wildcard include/config/arch/arc.h) \
$(wildcard include/config/arch/a5k.h) \
$(wildcard include/config/arch/etoile.h) \
$(wildcard include/config/arch/lacie/nas.h) \
$(wildcard include/config/arch/clps7500.h) \
$(wildcard include/config/arch/shark.h) \
$(wildcard include/config/sa1100/brutus.h) \
$(wildcard include/config/arch/personal/server.h) \
$(wildcard include/config/sa1100/itsy.h) \
$(wildcard include/config/arch/l7200.h) \
$(wildcard include/config/sa1100/pleb.h) \
$(wildcard include/config/arch/integrator.h) \
$(wildcard include/config/sa1100/h3600.h) \
$(wildcard include/config/arch/ixp1200.h) \
$(wildcard include/config/arch/p720t.h) \
$(wildcard include/config/sa1100/assabet.h) \
$(wildcard include/config/sa1100/victor.h) \
$(wildcard include/config/sa1100/lart.h) \
$(wildcard include/config/sa1100/ranger.h) \
$(wildcard include/config/sa1100/graphicsclient.h) \
$(wildcard include/config/sa1100/xp860.h) \
$(wildcard include/config/sa1100/cerf.h) \
$(wildcard include/config/sa1100/nanoengine.h) \
$(wildcard include/config/sa1100/fpic.h) \
$(wildcard include/config/sa1100/extenex1.h) \
$(wildcard include/config/sa1100/sherman.h) \
$(wildcard include/config/sa1100/accelent.h) \
$(wildcard include/config/arch/l7200/accelent.h) \
$(wildcard include/config/sa1100/netport.h) \
$(wildcard include/config/sa1100/pangolin.h) \
$(wildcard include/config/sa1100/yopy.h) \
$(wildcard include/config/sa1100/coolidge.h) \
$(wildcard include/config/sa1100/huw/webpanel.h) \
$(wildcard include/config/arch/spotme.h) \
$(wildcard include/config/arch/freebird.h) \
$(wildcard include/config/arch/ti925.h) \
$(wildcard include/config/arch/riscstation.h) \
$(wildcard include/config/sa1100/cavy.h) \
$(wildcard include/config/sa1100/jornada720.h) \
$(wildcard include/config/sa1100/omnimeter.h) \
$(wildcard include/config/arch/edb7211.h) \
$(wildcard include/config/sa1100/citygo.h) \
$(wildcard include/config/sa1100/pfs168.h) \
$(wildcard include/config/sa1100/spot.h) \
$(wildcard include/config/sa1100/flexanet.h) \
$(wildcard include/config/arch/webpal.h) \
$(wildcard include/config/sa1100/linpda.h) \
$(wildcard include/config/arch/anakin.h) \
$(wildcard include/config/sa1100/mvi.h) \
$(wildcard include/config/sa1100/jupiter.h) \
$(wildcard include/config/arch/psionw.h) \
$(wildcard include/config/sa1100/aln.h) \
$(wildcard include/config/arch/camelot.h) \
$(wildcard include/config/sa1100/gds2200.h) \
$(wildcard include/config/sa1100/psion/series7.h) \
$(wildcard include/config/sa1100/xfile.h) \
$(wildcard include/config/arch/accelent/ep9312.h) \
$(wildcard include/config/arch/ic200.h) \
$(wildcard include/config/sa1100/creditlart.h) \
$(wildcard include/config/sa1100/htm.h) \
$(wildcard include/config/arch/iq80310.h) \
$(wildcard include/config/sa1100/freebot.h) \
$(wildcard include/config/arch/entel.h) \
$(wildcard include/config/arch/enp3510.h) \
$(wildcard include/config/sa1100/trizeps.h) \
$(wildcard include/config/sa1100/nesa.h) \
$(wildcard include/config/arch/venus.h) \
$(wildcard include/config/arch/tardis.h) \
$(wildcard include/config/arch/mercury.h) \
$(wildcard include/config/sa1100/empeg.h) \
$(wildcard include/config/arch/i80200fcc.h) \
$(wildcard include/config/sa1100/itt/cpb.h) \
$(wildcard include/config/sa1100/svc.h) \
$(wildcard include/config/sa1100/alpha2.h) \
$(wildcard include/config/sa1100/alpha1.h) \
$(wildcard include/config/arch/netarm.h) \
$(wildcard include/config/sa1100/simpad.h) \
$(wildcard include/config/arch/pda1.h) \
$(wildcard include/config/arch/lubbock.h) \
$(wildcard include/config/arch/aniko.h) \
$(wildcard include/config/arch/clep7212.h) \
$(wildcard include/config/arch/cs89712.h) \
$(wildcard include/config/sa1100/weararm.h) \
$(wildcard include/config/sa1100/possio/px.h) \
$(wildcard include/config/sa1100/sidearm.h) \
$(wildcard include/config/sa1100/stork.h) \
$(wildcard include/config/sa1100/shannon.h) \
$(wildcard include/config/arch/ace.h) \
$(wildcard include/config/sa1100/ballyarm.h) \
$(wildcard include/config/sa1100/simputer.h) \
$(wildcard include/config/sa1100/nexterm.h) \
$(wildcard include/config/sa1100/sa1100/elf.h) \
$(wildcard include/config/sa1100/gator.h) \
$(wildcard include/config/arch/granite.h) \
$(wildcard include/config/sa1100/consus.h) \
$(wildcard include/config/arch/aaed2000.h) \
$(wildcard include/config/arch/cdb89712.h) \
$(wildcard include/config/sa1100/graphicsmaster.h) \
$(wildcard include/config/sa1100/adsbitsy.h) \
$(wildcard include/config/arch/pxa/idp.h) \
$(wildcard include/config/arch/plce.h) \
$(wildcard include/config/sa1100/pt/system3.h) \
$(wildcard include/config/arch/medalb.h) \
$(wildcard include/config/arch/eagle.h) \
$(wildcard include/config/arch/dsc21.h) \
$(wildcard include/config/arch/dsc24.h) \
$(wildcard include/config/arch/ti5472.h) \
$(wildcard include/config/arch/autcpu12.h) \
$(wildcard include/config/arch/uengine.h) \
$(wildcard include/config/sa1100/bluestem.h) \
$(wildcard include/config/arch/xingu8.h) \
$(wildcard include/config/arch/bushstb.h) \
$(wildcard include/config/sa1100/epsilon1.h) \
$(wildcard include/config/sa1100/balloon.h) \
$(wildcard include/config/arch/puppy.h) \
$(wildcard include/config/sa1100/elroy.h) \
$(wildcard include/config/arch/gms720.h) \
$(wildcard include/config/arch/s24x.h) \
$(wildcard include/config/arch/jtel/clep7312.h) \
$(wildcard include/config/arch/cx821xx.h) \
$(wildcard include/config/arch/edb7312.h) \
$(wildcard include/config/sa1100/bsa1110.h) \
$(wildcard include/config/arch/powerpin.h) \
$(wildcard include/config/arch/openarm.h) \
$(wildcard include/config/sa1100/whitechapel.h) \
$(wildcard include/config/sa1100/h3100.h) \
$(wildcard include/config/sa1100/h3800.h) \
$(wildcard include/config/arch/blue/v1.h) \
$(wildcard include/config/arch/pxa/cerf.h) \
$(wildcard include/config/arch/arm7tevb.h) \
$(wildcard include/config/sa1100/d7400.h) \
$(wildcard include/config/arch/piranha.h) \
$(wildcard include/config/sa1100/sbcamelot.h) \
$(wildcard include/config/sa1100/kings.h) \
$(wildcard include/config/arch/smdk2400.h) \
$(wildcard include/config/sa1100/collie.h) \
$(wildcard include/config/arch/idr.h) \
$(wildcard include/config/sa1100/badge4.h) \
$(wildcard include/config/arch/webnet.h) \
$(wildcard include/config/sa1100/d7300.h) \
$(wildcard include/config/sa1100/cep.h) \
$(wildcard include/config/arch/fortunet.h) \
$(wildcard include/config/arch/vc547x.h) \
$(wildcard include/config/sa1100/filewalker.h) \
$(wildcard include/config/sa1100/netgateway.h) \
$(wildcard include/config/sa1100/symbol2800.h) \
$(wildcard include/config/sa1100/suns.h) \
$(wildcard include/config/sa1100/frodo.h) \
$(wildcard include/config/sa1100/mach/tyte/ms301.h) \
$(wildcard include/config/arch/mx1ads.h) \
$(wildcard include/config/arch/h7201.h) \
$(wildcard include/config/arch/h7202.h) \
$(wildcard include/config/arch/amico.h) \
$(wildcard include/config/sa1100/iam.h) \
$(wildcard include/config/sa1100/tt530.h) \
$(wildcard include/config/arch/sam2400.h) \
$(wildcard include/config/sa1100/jornada56x.h) \
$(wildcard include/config/sa1100/active.h) \
$(wildcard include/config/arch/iq80321.h) \
$(wildcard include/config/sa1100/wid.h) \
$(wildcard include/config/arch/sabinal.h) \
$(wildcard include/config/arch/ixp425/matacumbe.h) \
$(wildcard include/config/sa1100/miniprint.h) \
$(wildcard include/config/arch/adm510x.h) \
$(wildcard include/config/sa1100/svs200.h) \
$(wildcard include/config/arch/atg/tcu.h) \
$(wildcard include/config/sa1100/jornada820.h) \
$(wildcard include/config/arch/s3c44b0.h) \
$(wildcard include/config/arch/margis2.h) \
$(wildcard include/config/arch/ks8695.h) \
$(wildcard include/config/arch/brh.h) \
$(wildcard include/config/arch/s3c2410.h) \
$(wildcard include/config/arch/possio/px30.h) \
$(wildcard include/config/arch/s3c2800.h) \
$(wildcard include/config/sa1100/fleetwood.h) \
$(wildcard include/config/arch/omaha.h) \
$(wildcard include/config/arch/ta7.h) \
$(wildcard include/config/sa1100/nova.h) \
$(wildcard include/config/arch/hmk.h) \
$(wildcard include/config/arch/karo.h) \
$(wildcard include/config/sa1100/fester.h) \
$(wildcard include/config/arch/gpi.h) \
$(wildcard include/config/arch/smdk2410.h) \
$(wildcard include/config/arch/i519.h) \
$(wildcard include/config/sa1100/nexio.h) \
$(wildcard include/config/sa1100/bitbox.h) \
$(wildcard include/config/sa1100/g200.h) \
$(wildcard include/config/sa1100/gill.h) \
$(wildcard include/config/arch/pxa/mercury.h) \
$(wildcard include/config/arch/ceiva.h) \
$(wildcard include/config/sa1100/fret.h) \
$(wildcard include/config/sa1100/emailphone.h) \
$(wildcard include/config/arch/h3900.h) \
$(wildcard include/config/arch/pxa1.h) \
$(wildcard include/config/sa1100/koan369.h) \
$(wildcard include/config/arch/cogent.h) \
$(wildcard include/config/arch/esl/simputer.h) \
$(wildcard include/config/arch/esl/simputer/clr.h) \
$(wildcard include/config/arch/esl/simputer/bw.h) \
$(wildcard include/config/arch/hhp/cradle.h) \
$(wildcard include/config/arch/he500.h) \
$(wildcard include/config/sa1100/inhandelf2.h) \
$(wildcard include/config/sa1100/inhandftip.h) \
$(wildcard include/config/sa1100/dnp1110.h) \
$(wildcard include/config/sa1100/pnp1110.h) \
$(wildcard include/config/arch/csb226.h) \
$(wildcard include/config/sa1100/arnold.h) \
$(wildcard include/config/mach/voiceblue.h) \
$(wildcard include/config/arch/jz8028.h) \
$(wildcard include/config/arch/h5400.h) \
$(wildcard include/config/sa1100/forte.h) \
$(wildcard include/config/sa1100/acam.h) \
$(wildcard include/config/sa1100/abox.h) \
$(wildcard include/config/arch/atmel.h) \
$(wildcard include/config/arch/sitsang.h) \
$(wildcard include/config/sa1100/cpu1110lcdnet.h) \
$(wildcard include/config/arch/mpl/vcma9.h) \
$(wildcard include/config/arch/opus/a1.h) \
$(wildcard include/config/arch/daytona.h) \
$(wildcard include/config/sa1100/killbear.h) \
$(wildcard include/config/arch/yoho.h) \
$(wildcard include/config/arch/jasper.h) \
$(wildcard include/config/arch/dsc25.h) \
$(wildcard include/config/mach/omap/innovator.h) \
$(wildcard include/config/arch/ramses.h) \
$(wildcard include/config/arch/s28x.h) \
$(wildcard include/config/arch/mport3.h) \
$(wildcard include/config/arch/pxa/eagle250.h) \
$(wildcard include/config/arch/pdb.h) \
$(wildcard include/config/sa1100/blue/2g.h) \
$(wildcard include/config/sa1100/bluearch.h) \
$(wildcard include/config/arch/ixdp2400.h) \
$(wildcard include/config/arch/ixdp2800.h) \
$(wildcard include/config/sa1100/explorer.h) \
$(wildcard include/config/arch/ixdp425.h) \
$(wildcard include/config/arch/chimp.h) \
$(wildcard include/config/arch/stork/nest.h) \
$(wildcard include/config/arch/stork/egg.h) \
$(wildcard include/config/sa1100/wismo.h) \
$(wildcard include/config/arch/ezlinx.h) \
$(wildcard include/config/arch/at91rm9200.h) \
$(wildcard include/config/arch/adtech/orion.h) \
$(wildcard include/config/arch/neptune.h) \
$(wildcard include/config/sa1100/hackkit.h) \
$(wildcard include/config/arch/pxa/wins30.h) \
$(wildcard include/config/sa1100/lavinna.h) \
$(wildcard include/config/arch/pxa/uengine.h) \
$(wildcard include/config/arch/innokom.h) \
$(wildcard include/config/arch/bms.h) \
$(wildcard include/config/arch/ixcdp1100.h) \
$(wildcard include/config/arch/prpmc1100.h) \
$(wildcard include/config/arch/at91rm9200dk.h) \
$(wildcard include/config/arch/armstick.h) \
$(wildcard include/config/arch/armonie.h) \
$(wildcard include/config/arch/mport1.h) \
$(wildcard include/config/arch/s3c5410.h) \
$(wildcard include/config/arch/zcp320a.h) \
$(wildcard include/config/arch/i/box.h) \
$(wildcard include/config/arch/stlc1502.h) \
$(wildcard include/config/arch/siren.h) \
$(wildcard include/config/arch/greenlake.h) \
$(wildcard include/config/arch/argus.h) \
$(wildcard include/config/sa1100/combadge.h) \
$(wildcard include/config/arch/rokepxa.h) \
$(wildcard include/config/arch/cintegrator.h) \
$(wildcard include/config/arch/guidea07.h) \
$(wildcard include/config/arch/tat257.h) \
$(wildcard include/config/arch/igp2425.h) \
$(wildcard include/config/arch/bluegramma.h) \
$(wildcard include/config/arch/ipod.h) \
$(wildcard include/config/arch/adsbitsyx.h) \
$(wildcard include/config/arch/trizeps2.h) \
$(wildcard include/config/arch/viper.h) \
$(wildcard include/config/sa1100/adsbitsyplus.h) \
$(wildcard include/config/sa1100/adsagc.h) \
$(wildcard include/config/arch/stp7312.h) \
$(wildcard include/config/mach/nx/phnx.h) \
$(wildcard include/config/arch/wep/ep250.h) \
$(wildcard include/config/arch/inhandelf3.h) \
$(wildcard include/config/arch/adi/coyote.h) \
$(wildcard include/config/arch/iyonix.h) \
$(wildcard include/config/arch/damicam/sa1110.h) \
$(wildcard include/config/arch/meg03.h) \
$(wildcard include/config/arch/pxa/whitechapel.h) \
$(wildcard include/config/arch/nwsc.h) \
$(wildcard include/config/arch/nwlarm.h) \
$(wildcard include/config/arch/ixp425/mguard.h) \
$(wildcard include/config/arch/pxa/netdcu4.h) \
$(wildcard include/config/arch/ixdp2401.h) \
$(wildcard include/config/arch/ixdp2801.h) \
$(wildcard include/config/arch/zodiac.h) \
$(wildcard include/config/arch/armmodul.h) \
$(wildcard include/config/sa1100/ketop.h) \
$(wildcard include/config/arch/av7200.h) \
$(wildcard include/config/arch/arch/ti925.h) \
$(wildcard include/config/arch/acq200.h) \
$(wildcard include/config/sa1100/pt/dafit.h) \
$(wildcard include/config/arch/ihba.h) \
$(wildcard include/config/arch/quinque.h) \
$(wildcard include/config/arch/nimbraone.h) \
$(wildcard include/config/arch/nimbra29x.h) \
$(wildcard include/config/arch/nimbra210.h) \
$(wildcard include/config/arch/hhp/d95xx.h) \
$(wildcard include/config/arch/labarm.h) \
$(wildcard include/config/arch/m825xx.h) \
$(wildcard include/config/sa1100/m7100.h) \
$(wildcard include/config/arch/nipc2.h) \
$(wildcard include/config/arch/fu7202.h) \
$(wildcard include/config/arch/adsagx.h) \
$(wildcard include/config/arch/pxa/pooh.h) \
$(wildcard include/config/arch/bandon.h) \
$(wildcard include/config/arch/pcm7210.h) \
$(wildcard include/config/arch/nms9200.h) \
$(wildcard include/config/arch/logodl.h) \
$(wildcard include/config/sa1100/m7140.h) \
$(wildcard include/config/arch/korebot.h) \
$(wildcard include/config/arch/iq31244.h) \
$(wildcard include/config/sa1100/koan393.h) \
$(wildcard include/config/arch/inhandftip3.h) \
$(wildcard include/config/arch/gonzo.h) \
$(wildcard include/config/arch/bast.h) \
$(wildcard include/config/arch/scanpass.h) \
$(wildcard include/config/arch/ep7312/pooh.h) \
$(wildcard include/config/arch/ta7s.h) \
$(wildcard include/config/arch/ta7v.h) \
$(wildcard include/config/sa1100/icarus.h) \
$(wildcard include/config/arch/h1900.h) \
$(wildcard include/config/sa1100/gemini.h) \
$(wildcard include/config/arch/axim.h) \
$(wildcard include/config/arch/audiotron.h) \
$(wildcard include/config/arch/h2200.h) \
$(wildcard include/config/arch/loox600.h) \
$(wildcard include/config/arch/niop.h) \
$(wildcard include/config/arch/dm310.h) \
$(wildcard include/config/arch/seedpxa/c2.h) \
$(wildcard include/config/arch/ixp4xx/mguard/pci.h) \
$(wildcard include/config/arch/h1940.h) \
$(wildcard include/config/arch/scorpio.h) \
$(wildcard include/config/arch/viva.h) \
$(wildcard include/config/arch/pxa/xcard.h) \
$(wildcard include/config/arch/csb335.h) \
$(wildcard include/config/arch/ixrd425.h) \
$(wildcard include/config/arch/iq80315.h) \
$(wildcard include/config/arch/nmp7312.h) \
$(wildcard include/config/arch/cx861xx.h) \
$(wildcard include/config/arch/enp2611.h) \
$(wildcard include/config/sa1100/xda.h) \
$(wildcard include/config/arch/csir/ims.h) \
$(wildcard include/config/arch/ixp421/dnaeeth.h) \
$(wildcard include/config/arch/pocketserv9200.h) \
$(wildcard include/config/arch/toto.h) \
$(wildcard include/config/arch/s3c2440.h) \
$(wildcard include/config/arch/ks8695p.h) \
$(wildcard include/config/arch/se4000.h) \
$(wildcard include/config/arch/quadriceps.h) \
$(wildcard include/config/arch/bronco.h) \
$(wildcard include/config/arch/esl/wireless/tab.h) \
$(wildcard include/config/arch/esl/sofcomp.h) \
$(wildcard include/config/arch/s5c7375.h) \
$(wildcard include/config/arch/spearhead.h) \
$(wildcard include/config/arch/pantera.h) \
$(wildcard include/config/arch/prayoglite.h) \
$(wildcard include/config/arch/gumstix.h) \
$(wildcard include/config/arch/rcube.h) \
$(wildcard include/config/arch/rea/olv.h) \
$(wildcard include/config/arch/pxa/iphone.h) \
$(wildcard include/config/arch/s3c3410.h) \
$(wildcard include/config/arch/espd/4510b.h) \
$(wildcard include/config/arch/mp1x.h) \
$(wildcard include/config/arch/at91rm9200tb.h) \
$(wildcard include/config/arch/adsvgx.h) \
$(wildcard include/config/mach/omap/h2.h) \
$(wildcard include/config/arch/pelee.h) \
$(wildcard include/config/mach/e740.h) \
$(wildcard include/config/arch/iq80331.h) \
$(wildcard include/config/arch/versatile/pb.h) \
$(wildcard include/config/mach/kev7a400.h) \
$(wildcard include/config/mach/lpd7a400.h) \
$(wildcard include/config/mach/lpd7a404.h) \
$(wildcard include/config/arch/fujitsu/camelot.h) \
$(wildcard include/config/arch/janus2m.h) \
$(wildcard include/config/mach/embtf.h) \
$(wildcard include/config/mach/hpm.h) \
$(wildcard include/config/mach/smdk2410tk.h) \
$(wildcard include/config/mach/smdk2410aj.h) \
$(wildcard include/config/mach/streetracer.h) \
$(wildcard include/config/mach/eframe.h) \
$(wildcard include/config/mach/csb337.h) \
$(wildcard include/config/mach/pxa/lark.h) \
$(wildcard include/config/mach/pnp2110.h) \
$(wildcard include/config/mach/tcc72x.h) \
$(wildcard include/config/mach/altair.h) \
$(wildcard include/config/mach/kc3.h) \
$(wildcard include/config/mach/sinteftd.h) \
$(wildcard include/config/mach/mainstone.h) \
$(wildcard include/config/mach/aday4x.h) \
$(wildcard include/config/mach/lite300.h) \
$(wildcard include/config/mach/s5c7376.h) \
$(wildcard include/config/mach/mt02.h) \
$(wildcard include/config/mach/mport3s.h) \
$(wildcard include/config/mach/ra/alpha.h) \
$(wildcard include/config/mach/xcep.h) \
$(wildcard include/config/mach/arcom/vulcan.h) \
$(wildcard include/config/mach/stargate.h) \
$(wildcard include/config/mach/armadilloj.h) \
$(wildcard include/config/mach/elroy/jack.h) \
$(wildcard include/config/mach/backend.h) \
$(wildcard include/config/mach/s5linbox.h) \
$(wildcard include/config/mach/nomadik.h) \
$(wildcard include/config/mach/ia/cpu/9200.h) \
$(wildcard include/config/mach/at91/bja1.h) \
$(wildcard include/config/mach/corgi.h) \
$(wildcard include/config/mach/poodle.h) \
$(wildcard include/config/mach/ten.h) \
$(wildcard include/config/mach/roverp5p.h) \
$(wildcard include/config/mach/sc2700.h) \
$(wildcard include/config/mach/ex/eagle.h) \
$(wildcard include/config/mach/nx/pxa12.h) \
$(wildcard include/config/mach/nx/pxa5.h) \
$(wildcard include/config/mach/blackboard2.h) \
$(wildcard include/config/mach/i819.h) \
$(wildcard include/config/mach/ixmb995e.h) \
$(wildcard include/config/mach/skyrider.h) \
$(wildcard include/config/mach/skyhawk.h) \
$(wildcard include/config/mach/enterprise.h) \
$(wildcard include/config/mach/dep2410.h) \
$(wildcard include/config/mach/armcore.h) \
$(wildcard include/config/mach/hobbit.h) \
$(wildcard include/config/mach/h7210.h) \
$(wildcard include/config/mach/pxa/netdcu5.h) \
$(wildcard include/config/mach/acc.h) \
$(wildcard include/config/mach/esl/sarva.h) \
$(wildcard include/config/mach/xm250.h) \
$(wildcard include/config/mach/t6tc1xb.h) \
$(wildcard include/config/mach/ess710.h) \
$(wildcard include/config/mach/mx31ads.h) \
$(wildcard include/config/mach/himalaya.h) \
$(wildcard include/config/mach/bolfenk.h) \
$(wildcard include/config/mach/at91rm9200kr.h) \
$(wildcard include/config/mach/edb9312.h) \
$(wildcard include/config/mach/omap/generic.h) \
$(wildcard include/config/mach/aximx3.h) \
$(wildcard include/config/mach/eb67xdip.h) \
$(wildcard include/config/mach/webtxs.h) \
$(wildcard include/config/mach/hawk.h) \
$(wildcard include/config/mach/ccat91sbc001.h) \
$(wildcard include/config/mach/expresso.h) \
$(wildcard include/config/mach/h4000.h) \
$(wildcard include/config/mach/dino.h) \
$(wildcard include/config/mach/ml675k.h) \
$(wildcard include/config/mach/edb9301.h) \
$(wildcard include/config/mach/edb9315.h) \
$(wildcard include/config/mach/reciva/tt.h) \
$(wildcard include/config/mach/cstcb01.h) \
$(wildcard include/config/mach/cstcb1.h) \
$(wildcard include/config/mach/shadwell.h) \
$(wildcard include/config/mach/goepel263.h) \
$(wildcard include/config/mach/acq100.h) \
$(wildcard include/config/mach/mx1fs2.h) \
$(wildcard include/config/mach/hiptop/g1.h) \
$(wildcard include/config/mach/sparky.h) \
$(wildcard include/config/mach/ns9750.h) \
$(wildcard include/config/mach/phoenix.h) \
$(wildcard include/config/mach/vr1000.h) \
$(wildcard include/config/mach/deisterpxa.h) \
$(wildcard include/config/mach/bcm1160.h) \
$(wildcard include/config/mach/pcm022.h) \
$(wildcard include/config/mach/adsgcx.h) \
$(wildcard include/config/mach/dreadnaught.h) \
$(wildcard include/config/mach/dm320.h) \
$(wildcard include/config/mach/markov.h) \
$(wildcard include/config/mach/cos7a400.h) \
$(wildcard include/config/mach/milano.h) \
$(wildcard include/config/mach/ue9328.h) \
$(wildcard include/config/mach/uex255.h) \
$(wildcard include/config/mach/ue2410.h) \
$(wildcard include/config/mach/a620.h) \
$(wildcard include/config/mach/ocelot.h) \
$(wildcard include/config/mach/cheetah.h) \
$(wildcard include/config/mach/omap/perseus2.h) \
$(wildcard include/config/mach/zvue.h) \
$(wildcard include/config/mach/roverp1.h) \
$(wildcard include/config/mach/asidial2.h) \
$(wildcard include/config/mach/s3c24a0.h) \
$(wildcard include/config/mach/e800.h) \
$(wildcard include/config/mach/e750.h) \
$(wildcard include/config/mach/s3c5500.h) \
$(wildcard include/config/mach/smdk5500.h) \
$(wildcard include/config/mach/signalsync.h) \
$(wildcard include/config/mach/nbc.h) \
$(wildcard include/config/mach/kodiak.h) \
$(wildcard include/config/mach/netbookpro.h) \
$(wildcard include/config/mach/hw90200.h) \
$(wildcard include/config/mach/condor.h) \
$(wildcard include/config/mach/cup.h) \
$(wildcard include/config/mach/kite.h) \
$(wildcard include/config/mach/scb9328.h) \
$(wildcard include/config/mach/omap/h3.h) \
$(wildcard include/config/mach/omap/h4.h) \
$(wildcard include/config/mach/n10.h) \
$(wildcard include/config/mach/montajade.h) \
$(wildcard include/config/mach/sg560.h) \
$(wildcard include/config/mach/dp1000.h) \
$(wildcard include/config/mach/omap/osk.h) \
$(wildcard include/config/mach/rg100v3.h) \
$(wildcard include/config/mach/mx2ads.h) \
$(wildcard include/config/mach/pxa/kilo.h) \
$(wildcard include/config/mach/ixp4xx/eagle.h) \
$(wildcard include/config/mach/tosa.h) \
$(wildcard include/config/mach/mb2520f.h) \
$(wildcard include/config/mach/emc1000.h) \
$(wildcard include/config/mach/tidsc25.h) \
$(wildcard include/config/mach/akcpmxl.h) \
$(wildcard include/config/mach/av3xx.h) \
$(wildcard include/config/mach/avila.h) \
$(wildcard include/config/mach/pxa/mpm10.h) \
$(wildcard include/config/mach/pxa/kyanite.h) \
$(wildcard include/config/mach/sgold.h) \
$(wildcard include/config/mach/oscar.h) \
$(wildcard include/config/mach/epxa4usb2.h) \
$(wildcard include/config/mach/xsengine.h) \
$(wildcard include/config/mach/ip600.h) \
$(wildcard include/config/mach/mcan2.h) \
$(wildcard include/config/mach/ddi/blueridge.h) \
$(wildcard include/config/mach/skyminder.h) \
$(wildcard include/config/mach/lpd79520.h) \
$(wildcard include/config/mach/edb9302.h) \
$(wildcard include/config/mach/hw90340.h) \
$(wildcard include/config/mach/cip/box.h) \
$(wildcard include/config/mach/ivpn.h) \
$(wildcard include/config/mach/rsoc2.h) \
$(wildcard include/config/mach/husky.h) \
$(wildcard include/config/mach/boxer.h) \
$(wildcard include/config/mach/shepherd.h) \
$(wildcard include/config/mach/aml42800aa.h) \
$(wildcard include/config/mach/lpc2294.h) \
$(wildcard include/config/mach/switchgrass.h) \
$(wildcard include/config/mach/ens/cmu.h) \
$(wildcard include/config/mach/mm6/sdb.h) \
$(wildcard include/config/mach/saturn.h) \
$(wildcard include/config/mach/i30030evb.h) \
$(wildcard include/config/mach/mxc27530evb.h) \
$(wildcard include/config/mach/smdk2800.h) \
$(wildcard include/config/mach/mtwilson.h) \
$(wildcard include/config/mach/ziti.h) \
$(wildcard include/config/mach/grandfather.h) \
$(wildcard include/config/mach/tengine.h) \
$(wildcard include/config/mach/s3c2460.h) \
$(wildcard include/config/mach/pdm.h) \
$(wildcard include/config/mach/h4700.h) \
$(wildcard include/config/mach/h6300.h) \
$(wildcard include/config/mach/rz1700.h) \
$(wildcard include/config/mach/a716.h) \
$(wildcard include/config/mach/estk2440a.h) \
$(wildcard include/config/mach/atwixp425.h) \
$(wildcard include/config/mach/csb336.h) \
$(wildcard include/config/mach/rirm2.h) \
$(wildcard include/config/mach/cx23518.h) \
$(wildcard include/config/mach/cx2351x.h) \
$(wildcard include/config/mach/computime.h) \
$(wildcard include/config/mach/izarus.h) \
$(wildcard include/config/mach/rts.h) \
$(wildcard include/config/mach/se5100.h) \
$(wildcard include/config/mach/s3c2510.h) \
$(wildcard include/config/mach/csb437tl.h) \
$(wildcard include/config/mach/slauson.h) \
$(wildcard include/config/mach/pearlriver.h) \
$(wildcard include/config/mach/tdc/p210.h) \
$(wildcard include/config/mach/sg580.h) \
$(wildcard include/config/mach/wrsbcarm7.h) \
$(wildcard include/config/mach/ipd.h) \
$(wildcard include/config/mach/pxa/dnp2110.h) \
$(wildcard include/config/mach/xaeniax.h) \
$(wildcard include/config/mach/somn4250.h) \
$(wildcard include/config/mach/pleb2.h) \
$(wildcard include/config/mach/cornwallis.h) \
$(wildcard include/config/mach/gurney/drv.h) \
$(wildcard include/config/mach/chaffee.h) \
$(wildcard include/config/mach/rms101.h) \
$(wildcard include/config/mach/rx3715.h) \
$(wildcard include/config/mach/swift.h) \
$(wildcard include/config/mach/roverp7.h) \
$(wildcard include/config/mach/pr818s.h) \
$(wildcard include/config/mach/trxpro.h) \
$(wildcard include/config/mach/nslu2.h) \
$(wildcard include/config/mach/e400.h) \
$(wildcard include/config/mach/trab.h) \
$(wildcard include/config/mach/cmc/pu2.h) \
$(wildcard include/config/mach/fulcrum.h) \
$(wildcard include/config/mach/netgate42x.h) \
$(wildcard include/config/mach/str710.h) \
$(wildcard include/config/mach/ixdpg425.h) \
$(wildcard include/config/mach/tomtomgo.h) \
$(wildcard include/config/mach/versatile/ab.h) \
$(wildcard include/config/mach/edb9307.h) \
$(wildcard include/config/mach/sg565.h) \
$(wildcard include/config/mach/lpd79524.h) \
$(wildcard include/config/mach/lpd79525.h) \
$(wildcard include/config/mach/rms100.h) \
$(wildcard include/config/mach/kb9200.h) \
$(wildcard include/config/mach/sx1.h) \
$(wildcard include/config/mach/hms39c7092.h) \
$(wildcard include/config/mach/armadillo.h) \
$(wildcard include/config/mach/ipcu.h) \
$(wildcard include/config/mach/loox720.h) \
$(wildcard include/config/mach/ixdp465.h) \
$(wildcard include/config/mach/ixdp2351.h) \
$(wildcard include/config/mach/adsvix.h) \
$(wildcard include/config/mach/dm270.h) \
$(wildcard include/config/mach/socltplus.h) \
$(wildcard include/config/mach/ecia.h) \
$(wildcard include/config/mach/cm4008.h) \
$(wildcard include/config/mach/p2001.h) \
$(wildcard include/config/mach/twister.h) \
$(wildcard include/config/mach/mudshark.h) \
$(wildcard include/config/mach/hb2.h) \
$(wildcard include/config/mach/iq80332.h) \
$(wildcard include/config/mach/sendt.h) \
$(wildcard include/config/mach/mx2jazz.h) \
$(wildcard include/config/mach/multiio.h) \
$(wildcard include/config/mach/hrdisplay.h) \
$(wildcard include/config/mach/mxc27530ads.h) \
$(wildcard include/config/mach/trizeps3.h) \
$(wildcard include/config/mach/zefeerdza.h) \
$(wildcard include/config/mach/zefeerdzb.h) \
$(wildcard include/config/mach/zefeerdzg.h) \
$(wildcard include/config/mach/zefeerdzn.h) \
$(wildcard include/config/mach/zefeerdzq.h) \
$(wildcard include/config/mach/gtwx5715.h) \
$(wildcard include/config/mach/astro/jack.h) \
$(wildcard include/config/mach/tip03.h) \
$(wildcard include/config/mach/a9200ec.h) \
$(wildcard include/config/mach/pnx0105.h) \
$(wildcard include/config/mach/adcpoecpu.h) \
$(wildcard include/config/mach/csb637.h) \
$(wildcard include/config/mach/mb9200.h) \
$(wildcard include/config/mach/kulun.h) \
$(wildcard include/config/mach/snapper.h) \
$(wildcard include/config/mach/optima.h) \
$(wildcard include/config/mach/dlhsbc.h) \
$(wildcard include/config/mach/x30.h) \
$(wildcard include/config/mach/n30.h) \
$(wildcard include/config/mach/manga/ks8695.h) \
$(wildcard include/config/mach/ajax.h) \
$(wildcard include/config/mach/nec/mp900.h) \
$(wildcard include/config/mach/vvtk1000.h) \
$(wildcard include/config/mach/kafa.h) \
$(wildcard include/config/mach/vvtk3000.h) \
$(wildcard include/config/mach/pimx1.h) \
$(wildcard include/config/mach/ollie.h) \
$(wildcard include/config/mach/skymax.h) \
$(wildcard include/config/mach/jazz.h) \
$(wildcard include/config/mach/tel/t3.h) \
$(wildcard include/config/mach/aisino/fcr255.h) \
$(wildcard include/config/mach/btweb.h) \
$(wildcard include/config/mach/dbg/lh79520.h) \
$(wildcard include/config/mach/cm41xx.h) \
$(wildcard include/config/mach/ts72xx.h) \
$(wildcard include/config/mach/nggpxa.h) \
$(wildcard include/config/mach/csb535.h) \
$(wildcard include/config/mach/csb536.h) \
$(wildcard include/config/mach/pxa/trakpod.h) \
$(wildcard include/config/mach/praxis.h) \
$(wildcard include/config/mach/lh75411.h) \
$(wildcard include/config/mach/otom.h) \
$(wildcard include/config/mach/nexcoder/2440.h) \
$(wildcard include/config/mach/loox410.h) \
$(wildcard include/config/mach/westlake.h) \
$(wildcard include/config/mach/nsb.h) \
$(wildcard include/config/mach/esl/sarva/stn.h) \
$(wildcard include/config/mach/esl/sarva/tft.h) \
$(wildcard include/config/mach/esl/sarva/iad.h) \
$(wildcard include/config/mach/esl/sarva/acc.h) \
$(wildcard include/config/mach/typhoon.h) \
$(wildcard include/config/mach/cnav.h) \
$(wildcard include/config/mach/a730.h) \
$(wildcard include/config/mach/netstar.h) \
$(wildcard include/config/mach/phasefale/supercon.h) \
$(wildcard include/config/mach/shiva1100.h) \
$(wildcard include/config/mach/etexsc.h) \
$(wildcard include/config/mach/ixdpg465.h) \
$(wildcard include/config/mach/a9m2410.h) \
$(wildcard include/config/mach/a9m2440.h) \
$(wildcard include/config/mach/a9m9750.h) \
$(wildcard include/config/mach/a9m9360.h) \
$(wildcard include/config/mach/unc90.h) \
$(wildcard include/config/mach/eco920.h) \
$(wildcard include/config/mach/satview.h) \
$(wildcard include/config/mach/roadrunner.h) \
$(wildcard include/config/mach/at91rm9200ek.h) \
$(wildcard include/config/mach/gp32.h) \
$(wildcard include/config/mach/gem.h) \
$(wildcard include/config/mach/i858.h) \
$(wildcard include/config/mach/hx2750.h) \
$(wildcard include/config/mach/mxc91131evb.h) \
$(wildcard include/config/mach/p700.h) \
$(wildcard include/config/mach/cpe.h) \
$(wildcard include/config/mach/spitz.h) \
$(wildcard include/config/mach/nimbra340.h) \
$(wildcard include/config/mach/lpc22xx.h) \
$(wildcard include/config/mach/comet3.h) \
$(wildcard include/config/mach/comet4.h) \
$(wildcard include/config/mach/csb625.h) \
$(wildcard include/config/mach/fortunet2.h) \
$(wildcard include/config/mach/s5h2200.h) \
$(wildcard include/config/mach/optorm920.h) \
$(wildcard include/config/mach/adsbitsyxb.h) \
$(wildcard include/config/mach/adssphere.h) \
$(wildcard include/config/mach/adsportal.h) \
$(wildcard include/config/mach/ln2410sbc.h) \
$(wildcard include/config/mach/cb3rufc.h) \
$(wildcard include/config/mach/mp2usb.h) \
$(wildcard include/config/mach/ntnp425c.h) \
$(wildcard include/config/mach/colibri.h) \
$(wildcard include/config/mach/pcm7220.h) \
$(wildcard include/config/mach/gateway7001.h) \
$(wildcard include/config/mach/pcm027.h) \
$(wildcard include/config/mach/cmpxa.h) \
$(wildcard include/config/mach/anubis.h) \
$(wildcard include/config/mach/ite8152.h) \
$(wildcard include/config/mach/lpc3xxx.h) \
$(wildcard include/config/mach/puppeteer.h) \
$(wildcard include/config/mach/e570.h) \
$(wildcard include/config/mach/x50.h) \
$(wildcard include/config/mach/recon.h) \
$(wildcard include/config/mach/xboardgp8.h) \
$(wildcard include/config/mach/fpic2.h) \
$(wildcard include/config/mach/akita.h) \
$(wildcard include/config/mach/a81.h) \
$(wildcard include/config/mach/svm/sc25x.h) \
$(wildcard include/config/mach/vadatech020.h) \
$(wildcard include/config/mach/tli.h) \
$(wildcard include/config/mach/edb9315lc.h) \
$(wildcard include/config/mach/passec.h) \
$(wildcard include/config/mach/ds/tiger.h) \
$(wildcard include/config/mach/e310.h) \
$(wildcard include/config/mach/e330.h) \
$(wildcard include/config/mach/rt3000.h) \
$(wildcard include/config/mach/nokia770.h) \
$(wildcard include/config/mach/pnx0106.h) \
$(wildcard include/config/mach/hx21xx.h) \
$(wildcard include/config/mach/faraday.h) \
$(wildcard include/config/mach/sbc9312.h) \
$(wildcard include/config/mach/batman.h) \
$(wildcard include/config/mach/jpd201.h) \
$(wildcard include/config/mach/mipsa.h) \
$(wildcard include/config/mach/kacom.h) \
$(wildcard include/config/mach/swarcocpu.h) \
$(wildcard include/config/mach/swarcodsl.h) \
$(wildcard include/config/mach/blueangel.h) \
$(wildcard include/config/mach/hairygrama.h) \
$(wildcard include/config/mach/banff.h) \
$(wildcard include/config/mach/carmeva.h) \
$(wildcard include/config/mach/sam255.h) \
$(wildcard include/config/mach/ppm10.h) \
$(wildcard include/config/mach/edb9315a.h) \
$(wildcard include/config/mach/sunset.h) \
$(wildcard include/config/mach/stargate2.h) \
$(wildcard include/config/mach/intelmote2.h) \
$(wildcard include/config/mach/trizeps4.h) \
$(wildcard include/config/mach/mainstone2.h) \
$(wildcard include/config/mach/ez/ixp42x.h) \
$(wildcard include/config/mach/tapwave/zodiac.h) \
$(wildcard include/config/mach/universalmeter.h) \
$(wildcard include/config/mach/hicoarm9.h) \
$(wildcard include/config/mach/pnx4008.h) \
$(wildcard include/config/mach/kws6000.h) \
$(wildcard include/config/mach/portux920t.h) \
$(wildcard include/config/mach/ez/x5.h) \
$(wildcard include/config/mach/omap/rudolph.h) \
$(wildcard include/config/mach/cpuat91.h) \
$(wildcard include/config/mach/rea9200.h) \
$(wildcard include/config/mach/acts/pune/sa1110.h) \
$(wildcard include/config/mach/ixp425.h) \
$(wildcard include/config/mach/i30030ads.h) \
$(wildcard include/config/mach/perch.h) \
$(wildcard include/config/mach/eis05r1.h) \
$(wildcard include/config/mach/pepperpad.h) \
$(wildcard include/config/mach/sb3010.h) \
$(wildcard include/config/mach/rm9200.h) \
$(wildcard include/config/mach/dma03.h) \
$(wildcard include/config/mach/road/s101.h) \
$(wildcard include/config/mach/iq81340sc.h) \
$(wildcard include/config/mach/iq/nextgen/b.h) \
$(wildcard include/config/mach/iq81340mc.h) \
$(wildcard include/config/mach/iq/nextgen/d.h) \
$(wildcard include/config/mach/iq/nextgen/e.h) \
$(wildcard include/config/mach/mallow/at91.h) \
$(wildcard include/config/mach/cybertracker/i.h) \
$(wildcard include/config/mach/gesbc931x.h) \
$(wildcard include/config/mach/centipad.h) \
$(wildcard include/config/mach/armsoc.h) \
$(wildcard include/config/mach/se4200.h) \
$(wildcard include/config/mach/ems197a.h) \
$(wildcard include/config/mach/micro9.h) \
$(wildcard include/config/mach/micro9l.h) \
$(wildcard include/config/mach/uc5471dsp.h) \
$(wildcard include/config/mach/sj5471eng.h) \
$(wildcard include/config/mach/cmpxa26x.h) \
$(wildcard include/config/mach/nc.h) \
$(wildcard include/config/mach/omap/palmte.h) \
$(wildcard include/config/mach/ajax52x.h) \
$(wildcard include/config/mach/siriustar.h) \
$(wildcard include/config/mach/iodata/hdlg.h) \
$(wildcard include/config/mach/at91rm9200utl.h) \
$(wildcard include/config/mach/biosafe.h) \
$(wildcard include/config/mach/mp1000.h) \
$(wildcard include/config/mach/parsy.h) \
$(wildcard include/config/mach/ccxp.h) \
$(wildcard include/config/mach/omap/gsample.h) \
$(wildcard include/config/mach/realview/eb.h) \
$(wildcard include/config/mach/samoa.h) \
$(wildcard include/config/mach/palmt3.h) \
$(wildcard include/config/mach/i878.h) \
$(wildcard include/config/mach/borzoi.h) \
$(wildcard include/config/mach/gecko.h) \
$(wildcard include/config/mach/ds101.h) \
$(wildcard include/config/mach/omap/palmtt2.h) \
$(wildcard include/config/mach/palmld.h) \
$(wildcard include/config/mach/cc9c.h) \
$(wildcard include/config/mach/sbc1670.h) \
$(wildcard include/config/mach/ixdp28x5.h) \
$(wildcard include/config/mach/omap/palmtt.h) \
$(wildcard include/config/mach/ml696k.h) \
$(wildcard include/config/mach/arcom/zeus.h) \
$(wildcard include/config/mach/osiris.h) \
$(wildcard include/config/mach/maestro.h) \
$(wildcard include/config/mach/palmte2.h) \
$(wildcard include/config/mach/ixbbm.h) \
$(wildcard include/config/mach/mx27ads.h) \
$(wildcard include/config/mach/ax8004.h) \
$(wildcard include/config/mach/at91sam9261ek.h) \
$(wildcard include/config/mach/loft.h) \
$(wildcard include/config/mach/magpie.h) \
$(wildcard include/config/mach/mx21ads.h) \
$(wildcard include/config/mach/mb87m3400.h) \
$(wildcard include/config/mach/mguard/delta.h) \
$(wildcard include/config/mach/davinci/dvdp.h) \
$(wildcard include/config/mach/htcuniversal.h) \
$(wildcard include/config/mach/tpad.h) \
$(wildcard include/config/mach/roverp3.h) \
$(wildcard include/config/mach/jornada928.h) \
$(wildcard include/config/mach/mv88fxx81.h) \
$(wildcard include/config/mach/stmp36xx.h) \
$(wildcard include/config/mach/sxni79524.h) \
$(wildcard include/config/mach/ams/delta.h) \
$(wildcard include/config/mach/uranium.h) \
$(wildcard include/config/mach/ucon.h) \
$(wildcard include/config/mach/nas100d.h) \
$(wildcard include/config/mach/l083/1000.h) \
$(wildcard include/config/mach/ezx.h) \
$(wildcard include/config/mach/pnx5220.h) \
$(wildcard include/config/mach/butte.h) \
$(wildcard include/config/mach/srm2.h) \
$(wildcard include/config/mach/dsbr.h) \
$(wildcard include/config/mach/crystalball.h) \
$(wildcard include/config/mach/tinypxa27x.h) \
$(wildcard include/config/mach/herbie.h) \
$(wildcard include/config/mach/magician.h) \
$(wildcard include/config/mach/cm4002.h) \
$(wildcard include/config/mach/b4.h) \
$(wildcard include/config/mach/maui.h) \
$(wildcard include/config/mach/cybertracker/g.h) \
$(wildcard include/config/mach/nxdkn.h) \
$(wildcard include/config/mach/mio8390.h) \
$(wildcard include/config/mach/omi/board.h) \
$(wildcard include/config/mach/mx21civ.h) \
$(wildcard include/config/mach/mahi/cdac.h) \
$(wildcard include/config/mach/palmtx.h) \
$(wildcard include/config/mach/s3c2413.h) \
$(wildcard include/config/mach/samsys/ep0.h) \
$(wildcard include/config/mach/wg302v1.h) \
$(wildcard include/config/mach/wg302v2.h) \
$(wildcard include/config/mach/eb42x.h) \
$(wildcard include/config/mach/iq331es.h) \
$(wildcard include/config/mach/cosydsp.h) \
$(wildcard include/config/mach/uplat7d.h) \
$(wildcard include/config/mach/ptdavinci.h) \
$(wildcard include/config/mach/mbus.h) \
$(wildcard include/config/mach/nadia2vb.h) \
$(wildcard include/config/mach/r1000.h) \
$(wildcard include/config/mach/hw90250.h) \
$(wildcard include/config/mach/omap/2430sdp.h) \
$(wildcard include/config/mach/davinci/evm.h) \
$(wildcard include/config/mach/omap/tornado.h) \
$(wildcard include/config/mach/olocreek.h) \
$(wildcard include/config/mach/palmz72.h) \
$(wildcard include/config/mach/nxdb500.h) \
$(wildcard include/config/mach/apf9328.h) \
$(wildcard include/config/mach/omap/wipoq.h) \
$(wildcard include/config/mach/omap/twip.h) \
$(wildcard include/config/mach/treo650.h) \
$(wildcard include/config/mach/acumen.h) \
$(wildcard include/config/mach/xp100.h) \
$(wildcard include/config/mach/fs2410.h) \
$(wildcard include/config/mach/pxa270/cerf.h) \
$(wildcard include/config/mach/sq2ftlpalm.h) \
$(wildcard include/config/mach/bsemserver.h) \
$(wildcard include/config/mach/netclient.h) \
$(wildcard include/config/mach/palmt5.h) \
$(wildcard include/config/mach/palmtc.h) \
$(wildcard include/config/mach/omap/apollon.h) \
$(wildcard include/config/mach/mxc30030evb.h) \
$(wildcard include/config/mach/rea/2d.h) \
$(wildcard include/config/mach/ti3e524.h) \
$(wildcard include/config/mach/ateb9200.h) \
$(wildcard include/config/mach/auckland.h) \
$(wildcard include/config/mach/ak3320m.h) \
$(wildcard include/config/mach/duramax.h) \
$(wildcard include/config/mach/n35.h) \
$(wildcard include/config/mach/pronghorn.h) \
$(wildcard include/config/mach/fundy.h) \
$(wildcard include/config/mach/logicpd/pxa270.h) \
$(wildcard include/config/mach/cpu777.h) \
$(wildcard include/config/mach/simicon9201.h) \
$(wildcard include/config/mach/leap2/hpm.h) \
$(wildcard include/config/mach/cm922txa10.h) \
$(wildcard include/config/mach/pxa.h) \
$(wildcard include/config/mach/sandgate2.h) \
$(wildcard include/config/mach/sandgate2g.h) \
$(wildcard include/config/mach/sandgate2p.h) \
$(wildcard include/config/mach/fred/jack.h) \
$(wildcard include/config/mach/ttg/color1.h) \
$(wildcard include/config/mach/nxeb500hmi.h) \
$(wildcard include/config/mach/netdcu8.h) \
$(wildcard include/config/mach/ng/fvx538.h) \
$(wildcard include/config/mach/ng/fvs338.h) \
$(wildcard include/config/mach/pnx4103.h) \
$(wildcard include/config/mach/hesdb.h) \
$(wildcard include/config/mach/xsilo.h) \
$(wildcard include/config/mach/espresso.h) \
$(wildcard include/config/mach/emlc.h) \
$(wildcard include/config/mach/sisteron.h) \
$(wildcard include/config/mach/rx1950.h) \
$(wildcard include/config/mach/tsc/venus.h) \
$(wildcard include/config/mach/ds101j.h) \
$(wildcard include/config/mach/mxc30030ads.h) \
$(wildcard include/config/mach/fujitsu/wimaxsoc.h) \
$(wildcard include/config/mach/dualpcmodem.h) \
$(wildcard include/config/mach/gesbc9312.h) \
$(wildcard include/config/mach/htcapache.h) \
$(wildcard include/config/mach/ixdp435.h) \
$(wildcard include/config/mach/catprovt100.h) \
$(wildcard include/config/mach/picotux1xx.h) \
$(wildcard include/config/mach/picotux2xx.h) \
$(wildcard include/config/mach/dsmg600.h) \
$(wildcard include/config/mach/empc2.h) \
$(wildcard include/config/mach/ventura.h) \
$(wildcard include/config/mach/phidget/sbc.h) \
$(wildcard include/config/mach/ij3k.h) \
$(wildcard include/config/mach/pisgah.h) \
$(wildcard include/config/mach/omap/fsample.h) \
$(wildcard include/config/mach/sg720.h) \
$(wildcard include/config/mach/redfox.h) \
$(wildcard include/config/mach/mysh/ep9315/1.h) \
$(wildcard include/config/mach/tpf106.h) \
$(wildcard include/config/mach/at91rm9200kg.h) \
$(wildcard include/config/mach/sledb.h) \
$(wildcard include/config/mach/ontrack.h) \
$(wildcard include/config/mach/pm1200.h) \
$(wildcard include/config/mach/ess24xxx.h) \
$(wildcard include/config/mach/coremp7.h) \
$(wildcard include/config/mach/nexcoder/6446.h) \
$(wildcard include/config/mach/stvc8380.h) \
$(wildcard include/config/mach/teklynx.h) \
$(wildcard include/config/mach/carbonado.h) \
$(wildcard include/config/mach/sysmos/mp730.h) \
$(wildcard include/config/mach/snapper/cl15.h) \
$(wildcard include/config/mach/pgigim.h) \
$(wildcard include/config/mach/ptx9160p2.h) \
$(wildcard include/config/mach/dcore1.h) \
$(wildcard include/config/mach/victorpxa.h) \
$(wildcard include/config/mach/mx2dtb.h) \
$(wildcard include/config/mach/pxa/irex/er0100.h) \
$(wildcard include/config/mach/omap/palmz71.h) \
$(wildcard include/config/mach/bartec/deg.h) \
$(wildcard include/config/mach/hw50251.h) \
$(wildcard include/config/mach/ibox.h) \
$(wildcard include/config/mach/atlaslh7a404.h) \
$(wildcard include/config/mach/pt2026.h) \
$(wildcard include/config/mach/htcalpine.h) \
$(wildcard include/config/mach/bartec/vtu.h) \
$(wildcard include/config/mach/vcoreii.h) \
$(wildcard include/config/mach/pdnb3.h) \
$(wildcard include/config/mach/htcbeetles.h) \
$(wildcard include/config/mach/s3c6400.h) \
$(wildcard include/config/mach/s3c2443.h) \
$(wildcard include/config/mach/omap/ldk.h) \
$(wildcard include/config/mach/smdk2460.h) \
$(wildcard include/config/mach/smdk2440.h) \
$(wildcard include/config/mach/smdk2412.h) \
$(wildcard include/config/mach/webbox.h) \
$(wildcard include/config/mach/cwwndp.h) \
$(wildcard include/config/mach/dragon.h) \
$(wildcard include/config/mach/opendo/cpu/board.h) \
$(wildcard include/config/mach/ccm2200.h) \
$(wildcard include/config/mach/etwarm.h) \
$(wildcard include/config/mach/m93030.h) \
$(wildcard include/config/mach/cc7u.h) \
$(wildcard include/config/mach/mtt/ranger.h) \
$(wildcard include/config/mach/nexus.h) \
$(wildcard include/config/mach/desman.h) \
$(wildcard include/config/mach/bkde303.h) \
$(wildcard include/config/mach/smdk2413.h) \
$(wildcard include/config/mach/aml/m7200.h) \
$(wildcard include/config/mach/aml/m5900.h) \
$(wildcard include/config/mach/sg640.h) \
$(wildcard include/config/mach/edg79524.h) \
$(wildcard include/config/mach/ai2410.h) \
$(wildcard include/config/mach/ixp465.h) \
$(wildcard include/config/mach/balloon3.h) \
$(wildcard include/config/mach/heins.h) \
$(wildcard include/config/mach/mpluseva.h) \
$(wildcard include/config/mach/rt042.h) \
$(wildcard include/config/mach/cwiem.h) \
$(wildcard include/config/mach/cm/x270.h) \
$(wildcard include/config/mach/cm/x255.h) \
$(wildcard include/config/mach/esh/at91.h) \
$(wildcard include/config/mach/sandgate3.h) \
$(wildcard include/config/mach/primo.h) \
$(wildcard include/config/mach/gemstone.h) \
$(wildcard include/config/mach/pronghornmetro.h) \
$(wildcard include/config/mach/sidewinder.h) \
$(wildcard include/config/mach/picomod1.h) \
$(wildcard include/config/mach/sg590.h) \
$(wildcard include/config/mach/akai9307.h) \
$(wildcard include/config/mach/fontaine.h) \
$(wildcard include/config/mach/wombat.h) \
$(wildcard include/config/mach/acq300.h) \
$(wildcard include/config/mach/mod/270.h) \
$(wildcard include/config/mach/vc0820.h) \
$(wildcard include/config/mach/ani/aim.h) \
$(wildcard include/config/mach/jellyfish.h) \
$(wildcard include/config/mach/amanita.h) \
$(wildcard include/config/mach/vlink.h) \
$(wildcard include/config/mach/dexflex.h) \
$(wildcard include/config/mach/eigen/ttq.h) \
$(wildcard include/config/mach/arcom/titan.h) \
$(wildcard include/config/mach/tabla.h) \
$(wildcard include/config/mach/mdirac3.h) \
$(wildcard include/config/mach/mrhfbp2.h) \
$(wildcard include/config/mach/at91rm9200rb.h) \
$(wildcard include/config/mach/ani/apm.h) \
$(wildcard include/config/mach/ella1.h) \
$(wildcard include/config/mach/inhand/pxa27x.h) \
$(wildcard include/config/mach/inhand/pxa25x.h) \
$(wildcard include/config/mach/empos/xm.h) \
$(wildcard include/config/mach/empos.h) \
$(wildcard include/config/mach/empos/tiny.h) \
$(wildcard include/config/mach/empos/sm.h) \
$(wildcard include/config/mach/egret.h) \
$(wildcard include/config/mach/ostrich.h) \
$(wildcard include/config/mach/n50.h) \
$(wildcard include/config/mach/ecbat91.h) \
$(wildcard include/config/mach/stareast.h) \
$(wildcard include/config/mach/dspg/dw.h) \
$(wildcard include/config/mach/onearm.h) \
$(wildcard include/config/mach/mrg110/6.h) \
$(wildcard include/config/mach/wrt300nv2.h) \
$(wildcard include/config/mach/xm/bulverde.h) \
$(wildcard include/config/mach/msm6100.h) \
$(wildcard include/config/mach/eti/b1.h) \
$(wildcard include/config/mach/zilog/za9l.h) \
$(wildcard include/config/mach/bit2440.h) \
$(wildcard include/config/mach/nbi.h) \
$(wildcard include/config/mach/smdk2443.h) \
$(wildcard include/config/mach/vdavinci.h) \
$(wildcard include/config/mach/atc6.h) \
$(wildcard include/config/mach/multmdw.h) \
$(wildcard include/config/mach/mba2440.h) \
$(wildcard include/config/mach/ecsd.h) \
$(wildcard include/config/mach/palmz31.h) \
$(wildcard include/config/mach/fsg.h) \
$(wildcard include/config/mach/razor101.h) \
$(wildcard include/config/mach/opera/tdm.h) \
$(wildcard include/config/mach/comcerto.h) \
$(wildcard include/config/mach/tb0319.h) \
$(wildcard include/config/mach/kws8000.h) \
$(wildcard include/config/mach/b2.h) \
$(wildcard include/config/mach/lcl54.h) \
$(wildcard include/config/mach/at91sam9260ek.h) \
$(wildcard include/config/mach/glantank.h) \
$(wildcard include/config/mach/n2100.h) \
$(wildcard include/config/mach/n4100.h) \
$(wildcard include/config/mach/vertical/rsc4.h) \
$(wildcard include/config/mach/sg8100.h) \
$(wildcard include/config/mach/im42xx.h) \
$(wildcard include/config/mach/ftxx.h) \
$(wildcard include/config/mach/lwfusion.h) \
$(wildcard include/config/mach/qt2410.h) \
$(wildcard include/config/mach/kixrp435.h) \
$(wildcard include/config/mach/ccw9c.h) \
$(wildcard include/config/mach/dabhs.h) \
$(wildcard include/config/mach/gzmx.h) \
$(wildcard include/config/mach/ipnw100ap.h) \
$(wildcard include/config/mach/cc9p9360dev.h) \
$(wildcard include/config/mach/cc9p9750dev.h) \
$(wildcard include/config/mach/cc9p9360val.h) \
$(wildcard include/config/mach/cc9p9750val.h) \
$(wildcard include/config/mach/nx70v.h) \
$(wildcard include/config/mach/at91rm9200df.h) \
$(wildcard include/config/mach/se/pilot2.h) \
$(wildcard include/config/mach/mtcn/t800.h) \
$(wildcard include/config/mach/vcmx212.h) \
$(wildcard include/config/mach/lynx.h) \
$(wildcard include/config/mach/at91sam9260id.h) \
$(wildcard include/config/mach/hw86052.h) \
$(wildcard include/config/mach/pilz/pmi3.h) \
$(wildcard include/config/mach/edb9302a.h) \
$(wildcard include/config/mach/edb9307a.h) \
$(wildcard include/config/mach/ct/dfs.h) \
$(wildcard include/config/mach/pilz/pmi4.h) \
$(wildcard include/config/mach/xceednp/ixp.h) \
$(wildcard include/config/mach/smdk2442b.h) \
$(wildcard include/config/mach/xnode.h) \
$(wildcard include/config/mach/aidx270.h) \
$(wildcard include/config/mach/rema.h) \
$(wildcard include/config/mach/bps1000.h) \
$(wildcard include/config/mach/hw90350.h) \
$(wildcard include/config/mach/omap/3430sdp.h) \
$(wildcard include/config/mach/bluetouch.h) \
$(wildcard include/config/mach/vstms.h) \
$(wildcard include/config/mach/xsbase270.h) \
$(wildcard include/config/mach/at91sam9260ek/cn.h) \
$(wildcard include/config/mach/adsturboxb.h) \
$(wildcard include/config/mach/oti4110.h) \
$(wildcard include/config/mach/hme/pxa.h) \
$(wildcard include/config/mach/deisterdca.h) \
$(wildcard include/config/mach/ces/ssem2.h) \
$(wildcard include/config/mach/ces/mtr.h) \
$(wildcard include/config/mach/tds/avng/sbc.h) \
$(wildcard include/config/mach/everest.h) \
$(wildcard include/config/mach/pnx4010.h) \
$(wildcard include/config/mach/oxnas.h) \
$(wildcard include/config/mach/fiori.h) \
$(wildcard include/config/mach/ml1200.h) \
$(wildcard include/config/mach/pecos.h) \
$(wildcard include/config/mach/nb2xxx.h) \
$(wildcard include/config/mach/hw6900.h) \
$(wildcard include/config/mach/cdcs/quoll.h) \
$(wildcard include/config/mach/quicksilver.h) \
$(wildcard include/config/mach/uplat926.h) \
$(wildcard include/config/mach/dep2410/thomas.h) \
$(wildcard include/config/mach/dtk2410.h) \
$(wildcard include/config/mach/chili.h) \
$(wildcard include/config/mach/demeter.h) \
$(wildcard include/config/mach/dionysus.h) \
$(wildcard include/config/mach/as352x.h) \
$(wildcard include/config/mach/service.h) \
$(wildcard include/config/mach/cs/e9301.h) \
$(wildcard include/config/mach/micro9m.h) \
$(wildcard include/config/mach/ia/mospck.h) \
$(wildcard include/config/mach/ql201b.h) \
$(wildcard include/config/mach/bbm.h) \
$(wildcard include/config/mach/exxx.h) \
$(wildcard include/config/mach/wma11b.h) \
$(wildcard include/config/mach/pelco/atlas.h) \
$(wildcard include/config/mach/g500.h) \
$(wildcard include/config/mach/bug.h) \
$(wildcard include/config/mach/mx33ads.h) \
$(wildcard include/config/mach/chub.h) \
$(wildcard include/config/mach/neo1973/gta01.h) \
$(wildcard include/config/mach/w90n740.h) \
$(wildcard include/config/mach/medallion/sa2410.h) \
$(wildcard include/config/mach/ia/cpu/9200/2.h) \
$(wildcard include/config/mach/dimmrm9200.h) \
$(wildcard include/config/mach/pm9261.h) \
$(wildcard include/config/mach/ml7304.h) \
$(wildcard include/config/mach/ucp250.h) \
$(wildcard include/config/mach/intboard.h) \
$(wildcard include/config/mach/gulfstream.h) \
$(wildcard include/config/mach/labquest.h) \
$(wildcard include/config/mach/vcmx313.h) \
$(wildcard include/config/mach/urg200.h) \
$(wildcard include/config/mach/cpux255lcdnet.h) \
$(wildcard include/config/mach/netdcu9.h) \
$(wildcard include/config/mach/netdcu10.h) \
$(wildcard include/config/mach/dspg/dga.h) \
$(wildcard include/config/mach/dspg/dvw.h) \
$(wildcard include/config/mach/solos.h) \
$(wildcard include/config/mach/at91sam9263ek.h) \
$(wildcard include/config/mach/osstbox.h) \
$(wildcard include/config/mach/kbat9261.h) \
$(wildcard include/config/mach/ct1100.h) \
$(wildcard include/config/mach/akcppxa.h) \
$(wildcard include/config/mach/ochaya1020.h) \
$(wildcard include/config/mach/hitrack.h) \
$(wildcard include/config/mach/syme1.h) \
$(wildcard include/config/mach/syhl1.h) \
$(wildcard include/config/mach/empca400.h) \
$(wildcard include/config/mach/em7210.h) \
$(wildcard include/config/mach/htchermes.h) \
$(wildcard include/config/mach/eti/c1.h) \
$(wildcard include/config/mach/ac100.h) \
$(wildcard include/config/mach/sneetch.h) \
$(wildcard include/config/mach/studentmate.h) \
$(wildcard include/config/mach/zir2410.h) \
$(wildcard include/config/mach/zir2413.h) \
$(wildcard include/config/mach/dlonip3.h) \
$(wildcard include/config/mach/instream.h) \
$(wildcard include/config/mach/ambarella.h) \
$(wildcard include/config/mach/nevis.h) \
$(wildcard include/config/mach/htc/trinity.h) \
$(wildcard include/config/mach/ql202b.h) \
$(wildcard include/config/mach/vpac270.h) \
$(wildcard include/config/mach/rd129.h) \
$(wildcard include/config/mach/htcwizard.h) \
$(wildcard include/config/mach/treo680.h) \
$(wildcard include/config/mach/tecon/tmezon.h) \
$(wildcard include/config/mach/zylonite.h) \
$(wildcard include/config/mach/gene1270.h) \
$(wildcard include/config/mach/zir2412.h) \
$(wildcard include/config/mach/mx31lite.h) \
$(wildcard include/config/mach/t700wx.h) \
$(wildcard include/config/mach/vf100.h) \
$(wildcard include/config/mach/nsb2.h) \
$(wildcard include/config/mach/nxhmi/bb.h) \
$(wildcard include/config/mach/nxhmi/re.h) \
$(wildcard include/config/mach/n4100pro.h) \
$(wildcard include/config/mach/sam9260.h) \
$(wildcard include/config/mach/omap/treo600.h) \
$(wildcard include/config/mach/indy2410.h) \
$(wildcard include/config/mach/nelt/a.h) \
$(wildcard include/config/mach/n311.h) \
$(wildcard include/config/mach/at91sam9260vgk.h) \
$(wildcard include/config/mach/at91leppe.h) \
$(wildcard include/config/mach/at91lepccn.h) \
$(wildcard include/config/mach/apc7100.h) \
$(wildcard include/config/mach/stargazer.h) \
$(wildcard include/config/mach/sonata.h) \
$(wildcard include/config/mach/schmoogie.h) \
$(wildcard include/config/mach/aztool.h) \
$(wildcard include/config/mach/mioa701.h) \
$(wildcard include/config/mach/sxni9260.h) \
$(wildcard include/config/mach/mxc27520evb.h) \
$(wildcard include/config/mach/armadillo5x0.h) \
$(wildcard include/config/mach/mb9260.h) \
$(wildcard include/config/mach/mb9263.h) \
$(wildcard include/config/mach/ipac9302.h) \
$(wildcard include/config/mach/cc9p9360js.h) \
$(wildcard include/config/mach/gallium.h) \
$(wildcard include/config/mach/msc2410.h) \
$(wildcard include/config/mach/ghi270.h) \
$(wildcard include/config/mach/davinci/leonardo.h) \
$(wildcard include/config/mach/oiab.h) \
$(wildcard include/config/mach/smdk6400.h) \
$(wildcard include/config/mach/nokia/n800.h) \
$(wildcard include/config/mach/greenphone.h) \
$(wildcard include/config/mach/compexwp18.h) \
$(wildcard include/config/mach/xmate.h) \
$(wildcard include/config/mach/energizer.h) \
$(wildcard include/config/mach/ime1.h) \
$(wildcard include/config/mach/swedatms.h) \
$(wildcard include/config/mach/ntnp435c.h) \
$(wildcard include/config/mach/spectro2.h) \
$(wildcard include/config/mach/h6039.h) \
$(wildcard include/config/mach/ep80219.h) \
$(wildcard include/config/mach/samoa/ii.h) \
$(wildcard include/config/mach/cwmxl.h) \
$(wildcard include/config/mach/as9200.h) \
$(wildcard include/config/mach/sfx1149.h) \
$(wildcard include/config/mach/navi010.h) \
$(wildcard include/config/mach/multmdp.h) \
$(wildcard include/config/mach/scb9520.h) \
$(wildcard include/config/mach/htcathena.h) \
$(wildcard include/config/mach/xp179.h) \
$(wildcard include/config/mach/h4300.h) \
$(wildcard include/config/mach/goramo/mlr.h) \
$(wildcard include/config/mach/mxc30020evb.h) \
$(wildcard include/config/mach/adsbitsyg5.h) \
$(wildcard include/config/mach/adsportalplus.h) \
$(wildcard include/config/mach/mmsp2plus.h) \
$(wildcard include/config/mach/em/x270.h) \
$(wildcard include/config/mach/tpp302.h) \
$(wildcard include/config/mach/tpm104.h) \
$(wildcard include/config/mach/tpm102.h) \
$(wildcard include/config/mach/tpm109.h) \
$(wildcard include/config/mach/fbxo1.h) \
$(wildcard include/config/mach/hxd8.h) \
$(wildcard include/config/mach/neo1973/gta02.h) \
$(wildcard include/config/mach/emtest.h) \
$(wildcard include/config/mach/ad6900.h) \
$(wildcard include/config/mach/europa.h) \
$(wildcard include/config/mach/metroconnect.h) \
$(wildcard include/config/mach/ez/s2410.h) \
$(wildcard include/config/mach/ez/s2440.h) \
$(wildcard include/config/mach/ez/ep9312.h) \
$(wildcard include/config/mach/ez/ep9315.h) \
$(wildcard include/config/mach/ez/x7.h) \
$(wildcard include/config/mach/godotdb.h) \
$(wildcard include/config/mach/mistral.h) \
$(wildcard include/config/mach/msm.h) \
$(wildcard include/config/mach/ct5910.h) \
$(wildcard include/config/mach/ct5912.h) \
$(wildcard include/config/mach/hynet/ine.h) \
$(wildcard include/config/mach/hynet/app.h) \
$(wildcard include/config/mach/msm7200.h) \
$(wildcard include/config/mach/msm7600.h) \
$(wildcard include/config/mach/ceb255.h) \
$(wildcard include/config/mach/ciel.h) \
$(wildcard include/config/mach/slm5650.h) \
$(wildcard include/config/mach/at91sam9rlek.h) \
$(wildcard include/config/mach/comtech/router.h) \
$(wildcard include/config/mach/sbc2410x.h) \
$(wildcard include/config/mach/at4x0bd.h) \
$(wildcard include/config/mach/cbifr.h) \
$(wildcard include/config/mach/arcom/quantum.h) \
$(wildcard include/config/mach/matrix520.h) \
$(wildcard include/config/mach/matrix510.h) \
$(wildcard include/config/mach/matrix500.h) \
$(wildcard include/config/mach/m501.h) \
$(wildcard include/config/mach/aaeon1270.h) \
$(wildcard include/config/mach/matrix500ev.h) \
$(wildcard include/config/mach/pac500.h) \
$(wildcard include/config/mach/pnx8181.h) \
$(wildcard include/config/mach/colibri320.h) \
$(wildcard include/config/mach/aztoolbb.h) \
$(wildcard include/config/mach/aztoolg2.h) \
$(wildcard include/config/mach/dvlhost.h) \
$(wildcard include/config/mach/zir9200.h) \
$(wildcard include/config/mach/zir9260.h) \
$(wildcard include/config/mach/cocopah.h) \
$(wildcard include/config/mach/nds.h) \
$(wildcard include/config/mach/rosencrantz.h) \
$(wildcard include/config/mach/fttx/odsc.h) \
$(wildcard include/config/mach/classe/r6904.h) \
$(wildcard include/config/mach/cam60.h) \
$(wildcard include/config/mach/mxc30031ads.h) \
$(wildcard include/config/mach/datacall.h) \
$(wildcard include/config/mach/at91eb01.h) \
$(wildcard include/config/mach/rty.h) \
$(wildcard include/config/mach/dwl2100.h) \
$(wildcard include/config/mach/vinsi.h) \
$(wildcard include/config/mach/db88f5281.h) \
$(wildcard include/config/mach/csb726.h) \
$(wildcard include/config/mach/tik27.h) \
$(wildcard include/config/mach/mx/uc7420.h) \
$(wildcard include/config/mach/rirm3.h) \
$(wildcard include/config/mach/pelco/odyssey.h) \
$(wildcard include/config/mach/adx/abox.h) \
$(wildcard include/config/mach/adx/tpid.h) \
$(wildcard include/config/mach/minicheck.h) \
$(wildcard include/config/mach/idam.h) \
$(wildcard include/config/mach/mario/mx.h) \
$(wildcard include/config/mach/vi1888.h) \
$(wildcard include/config/mach/zr4230.h) \
$(wildcard include/config/mach/t1/ix/blue.h) \
$(wildcard include/config/mach/syhq2.h) \
$(wildcard include/config/mach/computime/r3.h) \
$(wildcard include/config/mach/oratis.h) \
$(wildcard include/config/mach/mikko.h) \
$(wildcard include/config/mach/holon.h) \
$(wildcard include/config/mach/olip8.h) \
$(wildcard include/config/mach/ghi270hg.h) \
$(wildcard include/config/mach/davinci/dm6467/evm.h) \
$(wildcard include/config/mach/davinci/dm355/evm.h) \
$(wildcard include/config/mach/blackriver.h) \
$(wildcard include/config/mach/sandgatewp.h) \
$(wildcard include/config/mach/cdotbwsg.h) \
$(wildcard include/config/mach/quark963.h) \
$(wildcard include/config/mach/csb735.h) \
$(wildcard include/config/mach/littleton.h) \
$(wildcard include/config/mach/mio/p550.h) \
$(wildcard include/config/mach/motion2440.h) \
$(wildcard include/config/mach/imm500.h) \
$(wildcard include/config/mach/homematic.h) \
$(wildcard include/config/mach/ermine.h) \
$(wildcard include/config/mach/kb9202b.h) \
$(wildcard include/config/mach/hs1xx.h) \
$(wildcard include/config/mach/studentmate2440.h) \
$(wildcard include/config/mach/arvoo/l1/z1.h) \
$(wildcard include/config/mach/dep2410k.h) \
$(wildcard include/config/mach/xxsvideo.h) \
$(wildcard include/config/mach/im4004.h) \
$(wildcard include/config/mach/ochaya1050.h) \
$(wildcard include/config/mach/lep9261.h) \
$(wildcard include/config/mach/svenmeb.h) \
$(wildcard include/config/mach/fortunet2ne.h) \
$(wildcard include/config/mach/nxhx.h) \
$(wildcard include/config/mach/realview/pb11mp.h) \
$(wildcard include/config/mach/ids500.h) \
$(wildcard include/config/mach/ors/n725.h) \
$(wildcard include/config/mach/hsdarm.h) \
$(wildcard include/config/mach/sha/pon003.h) \
$(wildcard include/config/mach/sha/pon004.h) \
$(wildcard include/config/mach/sha/pon007.h) \
$(wildcard include/config/mach/sha/pon011.h) \
$(wildcard include/config/mach/h6042.h) \
$(wildcard include/config/mach/h6043.h) \
$(wildcard include/config/mach/looxc550.h) \
$(wildcard include/config/mach/cnty/titan.h) \
$(wildcard include/config/mach/app3xx.h) \
$(wildcard include/config/mach/sideoatsgrama.h) \
$(wildcard include/config/mach/treo700p.h) \
$(wildcard include/config/mach/treo700w.h) \
$(wildcard include/config/mach/treo750.h) \
$(wildcard include/config/mach/treo755p.h) \
$(wildcard include/config/mach/ezreganut9200.h) \
$(wildcard include/config/mach/sarge.h) \
$(wildcard include/config/mach/a696.h) \
$(wildcard include/config/mach/turtle.h) \
$(wildcard include/config/mach/mx27/3ds.h) \
$(wildcard include/config/mach/bishop.h) \
$(wildcard include/config/mach/pxx.h) \
$(wildcard include/config/mach/redwood.h) \
$(wildcard include/config/mach/omap/2430dlp.h) \
$(wildcard include/config/mach/omap/2430osk.h) \
$(wildcard include/config/mach/sardine.h) \
$(wildcard include/config/mach/halibut.h) \
$(wildcard include/config/mach/trout.h) \
$(wildcard include/config/mach/goldfish.h) \
$(wildcard include/config/mach/gesbc2440.h) \
$(wildcard include/config/mach/nomad.h) \
$(wildcard include/config/mach/rosalind.h) \
$(wildcard include/config/mach/cc9p9215.h) \
$(wildcard include/config/mach/cc9p9210.h) \
$(wildcard include/config/mach/cc9p9215js.h) \
$(wildcard include/config/mach/cc9p9210js.h) \
$(wildcard include/config/mach/nasffe.h) \
$(wildcard include/config/mach/tn2x0bd.h) \
$(wildcard include/config/mach/gwmpxa.h) \
$(wildcard include/config/mach/exyplus.h) \
$(wildcard include/config/mach/jadoo21.h) \
$(wildcard include/config/mach/looxn560.h) \
$(wildcard include/config/mach/bonsai.h) \
$(wildcard include/config/mach/adsmilgato.h) \
$(wildcard include/config/mach/gba.h) \
$(wildcard include/config/mach/h6044.h) \
$(wildcard include/config/mach/app.h) \
$(wildcard include/config/mach/tct/hammer.h) \
$(wildcard include/config/mach/herald.h) \
$(wildcard include/config/mach/artemis.h) \
$(wildcard include/config/mach/htctitan.h) \
$(wildcard include/config/mach/qranium.h) \
$(wildcard include/config/mach/adx/wsc2.h) \
$(wildcard include/config/mach/adx/medcom.h) \
$(wildcard include/config/mach/bboard.h) \
$(wildcard include/config/mach/cambria.h) \
$(wildcard include/config/mach/mt7xxx.h) \
$(wildcard include/config/mach/matrix512.h) \
$(wildcard include/config/mach/matrix522.h) \
$(wildcard include/config/mach/ipac5010.h) \
$(wildcard include/config/mach/sakura.h) \
$(wildcard include/config/mach/grocx.h) \
$(wildcard include/config/mach/pm9263.h) \
$(wildcard include/config/mach/sim/one.h) \
$(wildcard include/config/mach/acq132.h) \
$(wildcard include/config/mach/datr.h) \
$(wildcard include/config/mach/actux1.h) \
$(wildcard include/config/mach/actux2.h) \
$(wildcard include/config/mach/actux3.h) \
$(wildcard include/config/mach/flexit.h) \
$(wildcard include/config/mach/bh2x0bd.h) \
$(wildcard include/config/mach/atb2002.h) \
$(wildcard include/config/mach/xenon.h) \
$(wildcard include/config/mach/fm607.h) \
$(wildcard include/config/mach/matrix514.h) \
$(wildcard include/config/mach/matrix524.h) \
$(wildcard include/config/mach/inpod.h) \
$(wildcard include/config/mach/jive.h) \
$(wildcard include/config/mach/tll/mx21.h) \
$(wildcard include/config/mach/sbc2800.h) \
$(wildcard include/config/mach/cc7ucamry.h) \
$(wildcard include/config/mach/ubisys/p9/sc15.h) \
$(wildcard include/config/mach/ubisys/p9/ssc2d10.h) \
$(wildcard include/config/mach/ubisys/p9/rcu3.h) \
$(wildcard include/config/mach/aml/m8000.h) \
$(wildcard include/config/mach/snapper/270.h) \
$(wildcard include/config/mach/omap/bbx.h) \
$(wildcard include/config/mach/ucn2410.h) \
$(wildcard include/config/mach/sam9/l9260.h) \
$(wildcard include/config/mach/eti/c2.h) \
$(wildcard include/config/mach/avalanche.h) \
$(wildcard include/config/mach/realview/pb1176.h) \
$(wildcard include/config/mach/dp1500.h) \
$(wildcard include/config/mach/apple/iphone.h) \
$(wildcard include/config/mach/yl9200.h) \
$(wildcard include/config/mach/rd88f5182.h) \
$(wildcard include/config/mach/kurobox/pro.h) \
$(wildcard include/config/mach/se/poet.h) \
$(wildcard include/config/mach/mx31/3ds.h) \
$(wildcard include/config/mach/r270.h) \
$(wildcard include/config/mach/armour21.h) \
$(wildcard include/config/mach/dt2.h) \
$(wildcard include/config/mach/vt4.h) \
$(wildcard include/config/mach/tyco320.h) \
$(wildcard include/config/mach/adma.h) \
$(wildcard include/config/mach/wp188.h) \
$(wildcard include/config/mach/corsica.h) \
$(wildcard include/config/mach/bigeye.h) \
$(wildcard include/config/mach/tll5000.h) \
$(wildcard include/config/mach/bebot.h) \
$(wildcard include/config/mach/qong.h) \
$(wildcard include/config/mach/tcompact.h) \
$(wildcard include/config/mach/puma5.h) \
$(wildcard include/config/mach/elara.h) \
$(wildcard include/config/mach/ellington.h) \
$(wildcard include/config/mach/xda/atom.h) \
$(wildcard include/config/mach/energizer2.h) \
$(wildcard include/config/mach/odin.h) \
$(wildcard include/config/mach/actux4.h) \
$(wildcard include/config/mach/esl/omap.h) \
$(wildcard include/config/mach/omap2evm.h) \
$(wildcard include/config/mach/omap3evm.h) \
$(wildcard include/config/mach/adx/pcu57.h) \
$(wildcard include/config/mach/monaco.h) \
$(wildcard include/config/mach/levante.h) \
$(wildcard include/config/mach/tmxipx425.h) \
$(wildcard include/config/mach/leep.h) \
$(wildcard include/config/mach/raad.h) \
$(wildcard include/config/mach/dns323.h) \
$(wildcard include/config/mach/ap1000.h) \
$(wildcard include/config/mach/a9sam6432.h) \
$(wildcard include/config/mach/shiny.h) \
$(wildcard include/config/mach/omap3/beagle.h) \
$(wildcard include/config/mach/csr/bdb2.h) \
$(wildcard include/config/mach/nokia/n810.h) \
$(wildcard include/config/mach/c270.h) \
$(wildcard include/config/mach/sentry.h) \
$(wildcard include/config/mach/pcm038.h) \
$(wildcard include/config/mach/anc300.h) \
$(wildcard include/config/mach/htckaiser.h) \
$(wildcard include/config/mach/sbat100.h) \
$(wildcard include/config/mach/modunorm.h) \
$(wildcard include/config/mach/pelos/twarm.h) \
$(wildcard include/config/mach/flank.h) \
$(wildcard include/config/mach/sirloin.h) \
$(wildcard include/config/mach/brisket.h) \
$(wildcard include/config/mach/chuck.h) \
$(wildcard include/config/mach/otter.h) \
$(wildcard include/config/mach/davinci/ldk.h) \
$(wildcard include/config/mach/phreedom.h) \
$(wildcard include/config/mach/sg310.h) \
$(wildcard include/config/mach/ts209.h) \
$(wildcard include/config/mach/at91cap9adk.h) \
$(wildcard include/config/mach/tion9315.h) \
$(wildcard include/config/mach/mast.h) \
$(wildcard include/config/mach/pfw.h) \
$(wildcard include/config/mach/yl/p2440.h) \
$(wildcard include/config/mach/zsbc32.h) \
$(wildcard include/config/mach/omap/pace2.h) \
$(wildcard include/config/mach/imx/pace2.h) \
$(wildcard include/config/mach/mx31moboard.h) \
$(wildcard include/config/mach/mx37/3ds.h) \
$(wildcard include/config/mach/rcc.h) \
$(wildcard include/config/mach/arm9.h) \
$(wildcard include/config/mach/vision/ep9307.h) \
$(wildcard include/config/mach/scly1000.h) \
$(wildcard include/config/mach/fontel/ep.h) \
$(wildcard include/config/mach/voiceblue3g.h) \
$(wildcard include/config/mach/tt9200.h) \
$(wildcard include/config/mach/digi2410.h) \
$(wildcard include/config/mach/terastation/pro2.h) \
$(wildcard include/config/mach/linkstation/pro.h) \
$(wildcard include/config/mach/motorola/a780.h) \
$(wildcard include/config/mach/motorola/e6.h) \
$(wildcard include/config/mach/motorola/e2.h) \
$(wildcard include/config/mach/motorola/e680.h) \
$(wildcard include/config/mach/ur2410.h) \
$(wildcard include/config/mach/tas9261.h) \
$(wildcard include/config/mach/hermes/hd.h) \
$(wildcard include/config/mach/perseo/hd.h) \
$(wildcard include/config/mach/stargazer2.h) \
$(wildcard include/config/mach/e350.h) \
$(wildcard include/config/mach/wpcm450.h) \
$(wildcard include/config/mach/cartesio.h) \
$(wildcard include/config/mach/toybox.h) \
$(wildcard include/config/mach/tx27.h) \
$(wildcard include/config/mach/ts409.h) \
$(wildcard include/config/mach/p300.h) \
$(wildcard include/config/mach/xdacomet.h) \
$(wildcard include/config/mach/dexflex2.h) \
$(wildcard include/config/mach/ow.h) \
$(wildcard include/config/mach/armebs3.h) \
$(wildcard include/config/mach/u3.h) \
$(wildcard include/config/mach/smdk2450.h) \
$(wildcard include/config/mach/rsi/ews.h) \
$(wildcard include/config/mach/tnb.h) \
$(wildcard include/config/mach/toepath.h) \
$(wildcard include/config/mach/kb9263.h) \
$(wildcard include/config/mach/mt7108.h) \
$(wildcard include/config/mach/smtr2440.h) \
$(wildcard include/config/mach/manao.h) \
$(wildcard include/config/mach/cm/x300.h) \
$(wildcard include/config/mach/gulfstream/kp.h) \
$(wildcard include/config/mach/lanreadyfn522.h) \
$(wildcard include/config/mach/arma37.h) \
$(wildcard include/config/mach/mendel.h) \
$(wildcard include/config/mach/pelco/iliad.h) \
$(wildcard include/config/mach/unit2p.h) \
$(wildcard include/config/mach/inc20otter.h) \
$(wildcard include/config/mach/at91sam9g20ek.h) \
$(wildcard include/config/mach/storcenter.h) \
$(wildcard include/config/mach/smdk6410.h) \
$(wildcard include/config/mach/u300.h) \
$(wildcard include/config/mach/u500.h) \
$(wildcard include/config/mach/ds9260.h) \
$(wildcard include/config/mach/riverrock.h) \
$(wildcard include/config/mach/scibath.h) \
$(wildcard include/config/mach/at91sam7se512ek.h) \
$(wildcard include/config/mach/wrt350n/v2.h) \
$(wildcard include/config/mach/multimedia.h) \
$(wildcard include/config/mach/marvin.h) \
$(wildcard include/config/mach/x500.h) \
$(wildcard include/config/mach/awlug4lcu.h) \
$(wildcard include/config/mach/palermoc.h) \
$(wildcard include/config/mach/omap/ldp.h) \
$(wildcard include/config/mach/ip500.h) \
$(wildcard include/config/mach/ase2.h) \
$(wildcard include/config/mach/mx35evb.h) \
$(wildcard include/config/mach/aml/m8050.h) \
$(wildcard include/config/mach/mx35/3ds.h) \
$(wildcard include/config/mach/mars.h) \
$(wildcard include/config/mach/neuros/osd2.h) \
$(wildcard include/config/mach/badger.h) \
$(wildcard include/config/mach/trizeps4wl.h) \
$(wildcard include/config/mach/trizeps5.h) \
$(wildcard include/config/mach/marlin.h) \
$(wildcard include/config/mach/ts78xx.h) \
$(wildcard include/config/mach/hpipaq214.h) \
$(wildcard include/config/mach/at572d940dcm.h) \
$(wildcard include/config/mach/ne1board.h) \
$(wildcard include/config/mach/zante.h) \
$(wildcard include/config/mach/sffsdr.h) \
$(wildcard include/config/mach/tw2662.h) \
$(wildcard include/config/mach/vf10xx.h) \
$(wildcard include/config/mach/zoran43xx.h) \
$(wildcard include/config/mach/sonix926.h) \
$(wildcard include/config/mach/celestialsemi.h) \
$(wildcard include/config/mach/cc9m2443js.h) \
$(wildcard include/config/mach/tw5334.h) \
$(wildcard include/config/mach/htcartemis.h) \
$(wildcard include/config/mach/nal/hlite.h) \
$(wildcard include/config/mach/htcvogue.h) \
$(wildcard include/config/mach/smartweb.h) \
$(wildcard include/config/mach/mv86xx.h) \
$(wildcard include/config/mach/mv87xx.h) \
$(wildcard include/config/mach/songyoungho.h) \
$(wildcard include/config/mach/younghotema.h) \
$(wildcard include/config/mach/pcm037.h) \
$(wildcard include/config/mach/mmvp.h) \
$(wildcard include/config/mach/mmap.h) \
$(wildcard include/config/mach/ptid2410.h) \
$(wildcard include/config/mach/james/926.h) \
$(wildcard include/config/mach/fm6000.h) \
$(wildcard include/config/mach/db88f6281/bp.h) \
$(wildcard include/config/mach/rd88f6192/nas.h) \
$(wildcard include/config/mach/rd88f6281.h) \
$(wildcard include/config/mach/db78x00/bp.h) \
$(wildcard include/config/mach/smdk2416.h) \
$(wildcard include/config/mach/oce/spider/si.h) \
$(wildcard include/config/mach/oce/spider/sk.h) \
$(wildcard include/config/mach/rovern6.h) \
$(wildcard include/config/mach/pelco/evolution.h) \
$(wildcard include/config/mach/wbd111.h) \
$(wildcard include/config/mach/elaracpe.h) \
$(wildcard include/config/mach/mabv3.h) \
$(wildcard include/config/mach/mv2120.h) \
$(wildcard include/config/mach/csb737.h) \
$(wildcard include/config/mach/mx51/3ds.h) \
$(wildcard include/config/mach/g900.h) \
$(wildcard include/config/mach/apf27.h) \
$(wildcard include/config/mach/ggus2000.h) \
$(wildcard include/config/mach/omap/2430/mimic.h) \
$(wildcard include/config/mach/imx27lite.h) \
$(wildcard include/config/mach/almex.h) \
$(wildcard include/config/mach/control.h) \
$(wildcard include/config/mach/mba2410.h) \
$(wildcard include/config/mach/volcano.h) \
$(wildcard include/config/mach/zenith.h) \
$(wildcard include/config/mach/muchip.h) \
$(wildcard include/config/mach/magellan.h) \
$(wildcard include/config/mach/usb/a9260.h) \
$(wildcard include/config/mach/usb/a9263.h) \
$(wildcard include/config/mach/qil/a9260.h) \
$(wildcard include/config/mach/cme9210.h) \
$(wildcard include/config/mach/hczh4.h) \
$(wildcard include/config/mach/spearbasic.h) \
$(wildcard include/config/mach/dep2440.h) \
$(wildcard include/config/mach/hdl/gxr.h) \
$(wildcard include/config/mach/hdl/gt.h) \
$(wildcard include/config/mach/hdl/4g.h) \
$(wildcard include/config/mach/s3c6000.h) \
$(wildcard include/config/mach/mmsp2/mdk.h) \
$(wildcard include/config/mach/mpx220.h) \
$(wildcard include/config/mach/kzm/arm11/01.h) \
$(wildcard include/config/mach/htc/polaris.h) \
$(wildcard include/config/mach/htc/kaiser.h) \
$(wildcard include/config/mach/lg/ks20.h) \
$(wildcard include/config/mach/hhgps.h) \
$(wildcard include/config/mach/nokia/n810/wimax.h) \
$(wildcard include/config/mach/insight.h) \
$(wildcard include/config/mach/sapphire.h) \
$(wildcard include/config/mach/csb637xo.h) \
$(wildcard include/config/mach/evisiong.h) \
$(wildcard include/config/mach/stmp37xx.h) \
$(wildcard include/config/mach/stmp378x.h) \
$(wildcard include/config/mach/tnt.h) \
$(wildcard include/config/mach/tbxt.h) \
$(wildcard include/config/mach/playmate.h) \
$(wildcard include/config/mach/pns10.h) \
$(wildcard include/config/mach/eznavi.h) \
$(wildcard include/config/mach/ps4000.h) \
$(wildcard include/config/mach/ezx/a780.h) \
$(wildcard include/config/mach/ezx/e680.h) \
$(wildcard include/config/mach/ezx/a1200.h) \
$(wildcard include/config/mach/ezx/e6.h) \
$(wildcard include/config/mach/ezx/e2.h) \
$(wildcard include/config/mach/ezx/a910.h) \
$(wildcard include/config/mach/cwmx31.h) \
$(wildcard include/config/mach/sl2312.h) \
$(wildcard include/config/mach/blenny.h) \
$(wildcard include/config/mach/ds107.h) \
$(wildcard include/config/mach/dsx07.h) \
$(wildcard include/config/mach/picocom1.h) \
$(wildcard include/config/mach/lynx/wolverine.h) \
$(wildcard include/config/mach/ubisys/p9/sc19.h) \
$(wildcard include/config/mach/kratos/low.h) \
$(wildcard include/config/mach/m700.h) \
$(wildcard include/config/mach/edmini/v2.h) \
$(wildcard include/config/mach/zipit2.h) \
$(wildcard include/config/mach/hslfemtocell.h) \
$(wildcard include/config/mach/daintree/at91.h) \
$(wildcard include/config/mach/sg560usb.h) \
$(wildcard include/config/mach/omap3/pandora.h) \
$(wildcard include/config/mach/usr8200.h) \
$(wildcard include/config/mach/s1s65k.h) \
$(wildcard include/config/mach/s2s65a.h) \
$(wildcard include/config/mach/icore.h) \
$(wildcard include/config/mach/mss2.h) \
$(wildcard include/config/mach/belmont.h) \
$(wildcard include/config/mach/asusp525.h) \
$(wildcard include/config/mach/lb88rc8480.h) \
$(wildcard include/config/mach/hipxa.h) \
$(wildcard include/config/mach/mx25/3ds.h) \
$(wildcard include/config/mach/m800.h) \
$(wildcard include/config/mach/omap3530/lv/som.h) \
$(wildcard include/config/mach/prima/evb.h) \
$(wildcard include/config/mach/mx31bt1.h) \
$(wildcard include/config/mach/atlas4/evb.h) \
$(wildcard include/config/mach/mx31cicada.h) \
$(wildcard include/config/mach/mi424wr.h) \
$(wildcard include/config/mach/axs/ultrax.h) \
$(wildcard include/config/mach/at572d940deb.h) \
$(wildcard include/config/mach/davinci/da830/evm.h) \
$(wildcard include/config/mach/ep9302.h) \
$(wildcard include/config/mach/at572d940hfeb.h) \
$(wildcard include/config/mach/cybook3.h) \
$(wildcard include/config/mach/wdg002.h) \
$(wildcard include/config/mach/sg560adsl.h) \
$(wildcard include/config/mach/nextio/n2800/ica.h) \
$(wildcard include/config/mach/dove/db.h) \
$(wildcard include/config/mach/marvell/newdb.h) \
$(wildcard include/config/mach/vandihud.h) \
$(wildcard include/config/mach/magx/e8.h) \
$(wildcard include/config/mach/magx/z6.h) \
$(wildcard include/config/mach/magx/v8.h) \
$(wildcard include/config/mach/magx/u9.h) \
$(wildcard include/config/mach/toughcf08.h) \
$(wildcard include/config/mach/zw4400.h) \
$(wildcard include/config/mach/marat91.h) \
$(wildcard include/config/mach/overo.h) \
$(wildcard include/config/mach/at2440evb.h) \
$(wildcard include/config/mach/neocore926.h) \
$(wildcard include/config/mach/wnr854t.h) \
$(wildcard include/config/mach/imx27.h) \
$(wildcard include/config/mach/moose/db.h) \
$(wildcard include/config/mach/fab4.h) \
$(wildcard include/config/mach/htcdiamond.h) \
$(wildcard include/config/mach/fiona.h) \
$(wildcard include/config/mach/mxc30030/x.h) \
$(wildcard include/config/mach/bmp1000.h) \
$(wildcard include/config/mach/logi9200.h) \
$(wildcard include/config/mach/tqma31.h) \
$(wildcard include/config/mach/ccw9p9215js.h) \
$(wildcard include/config/mach/rd88f5181l/ge.h) \
$(wildcard include/config/mach/sifmain.h) \
$(wildcard include/config/mach/sam9/l9261.h) \
$(wildcard include/config/mach/cc9m2443.h) \
$(wildcard include/config/mach/xaria300.h) \
$(wildcard include/config/mach/it9200.h) \
$(wildcard include/config/mach/rd88f5181l/fxo.h) \
$(wildcard include/config/mach/kriss/sensor.h) \
$(wildcard include/config/mach/pilz/pmi5.h) \
$(wildcard include/config/mach/jade.h) \
$(wildcard include/config/mach/ks8695/softplc.h) \
$(wildcard include/config/mach/gprisc3.h) \
$(wildcard include/config/mach/stamp9g20.h) \
$(wildcard include/config/mach/smdk6430.h) \
$(wildcard include/config/mach/smdkc100.h) \
$(wildcard include/config/mach/tavorevb.h) \
$(wildcard include/config/mach/saar.h) \
$(wildcard include/config/mach/deister/eyecam.h) \
$(wildcard include/config/mach/at91sam9m10g45ek.h) \
$(wildcard include/config/mach/linkstation/produo.h) \
$(wildcard include/config/mach/hit/b0.h) \
$(wildcard include/config/mach/adx/rmu.h) \
$(wildcard include/config/mach/xg/cpe/main.h) \
$(wildcard include/config/mach/edb9407a.h) \
$(wildcard include/config/mach/dtb9608.h) \
$(wildcard include/config/mach/em104v1.h) \
$(wildcard include/config/mach/demo.h) \
$(wildcard include/config/mach/logi9260.h) \
$(wildcard include/config/mach/mx31/exm32.h) \
$(wildcard include/config/mach/usb/a9g20.h) \
$(wildcard include/config/mach/picproje2008.h) \
$(wildcard include/config/mach/cs/e9315.h) \
$(wildcard include/config/mach/qil/a9g20.h) \
$(wildcard include/config/mach/sha/pon020.h) \
$(wildcard include/config/mach/nad.h) \
$(wildcard include/config/mach/sbc35/a9260.h) \
$(wildcard include/config/mach/sbc35/a9g20.h) \
$(wildcard include/config/mach/davinci/beginning.h) \
$(wildcard include/config/mach/uwc.h) \
$(wildcard include/config/mach/mxlads.h) \
$(wildcard include/config/mach/htcnike.h) \
$(wildcard include/config/mach/deister/pxa270.h) \
$(wildcard include/config/mach/cme9210js.h) \
$(wildcard include/config/mach/cc9p9360.h) \
$(wildcard include/config/mach/mocha.h) \
$(wildcard include/config/mach/wapd170ag.h) \
$(wildcard include/config/mach/linkstation/mini.h) \
$(wildcard include/config/mach/afeb9260.h) \
$(wildcard include/config/mach/w90x900.h) \
$(wildcard include/config/mach/w90x700.h) \
$(wildcard include/config/mach/kt300ip.h) \
$(wildcard include/config/mach/kt300ip/g20.h) \
$(wildcard include/config/mach/srcm.h) \
$(wildcard include/config/mach/wlnx/9260.h) \
$(wildcard include/config/mach/openmoko/gta03.h) \
$(wildcard include/config/mach/osprey2.h) \
$(wildcard include/config/mach/kbio9260.h) \
$(wildcard include/config/mach/ginza.h) \
$(wildcard include/config/mach/a636n.h) \
$(wildcard include/config/mach/imx27ipcam.h) \
$(wildcard include/config/mach/nemoc.h) \
$(wildcard include/config/mach/geneva.h) \
$(wildcard include/config/mach/htcpharos.h) \
$(wildcard include/config/mach/neonc.h) \
$(wildcard include/config/mach/nas7100.h) \
$(wildcard include/config/mach/teuphone.h) \
$(wildcard include/config/mach/annax/eth2.h) \
$(wildcard include/config/mach/csb733.h) \
$(wildcard include/config/mach/bk3.h) \
$(wildcard include/config/mach/omap/em32.h) \
$(wildcard include/config/mach/et9261cp.h) \
$(wildcard include/config/mach/jasperc.h) \
$(wildcard include/config/mach/issi/arm9.h) \
$(wildcard include/config/mach/ued.h) \
$(wildcard include/config/mach/esiblade.h) \
$(wildcard include/config/mach/eye02.h) \
$(wildcard include/config/mach/imx27kbd.h) \
$(wildcard include/config/mach/sst61vc010/fpga.h) \
$(wildcard include/config/mach/kixvp435.h) \
$(wildcard include/config/mach/kixnp435.h) \
$(wildcard include/config/mach/africa.h) \
$(wildcard include/config/mach/nh233.h) \
$(wildcard include/config/mach/rd88f6183ap/ge.h) \
$(wildcard include/config/mach/bcm4760.h) \
$(wildcard include/config/mach/eddy/v2.h) \
$(wildcard include/config/mach/realview/pba8.h) \
$(wildcard include/config/mach/hid/a7.h) \
$(wildcard include/config/mach/hero.h) \
$(wildcard include/config/mach/omap/poseidon.h) \
$(wildcard include/config/mach/realview/pbx.h) \
$(wildcard include/config/mach/micro9s.h) \
$(wildcard include/config/mach/mako.h) \
$(wildcard include/config/mach/xdaflame.h) \
$(wildcard include/config/mach/phidget/sbc2.h) \
$(wildcard include/config/mach/limestone.h) \
$(wildcard include/config/mach/iprobe/c32.h) \
$(wildcard include/config/mach/rut100.h) \
$(wildcard include/config/mach/asusp535.h) \
$(wildcard include/config/mach/htcraphael.h) \
$(wildcard include/config/mach/sygdg1.h) \
$(wildcard include/config/mach/sygdg2.h) \
$(wildcard include/config/mach/seoul.h) \
$(wildcard include/config/mach/salerno.h) \
$(wildcard include/config/mach/ucn/s3c64xx.h) \
$(wildcard include/config/mach/msm7201a.h) \
$(wildcard include/config/mach/lpr1.h) \
$(wildcard include/config/mach/armadillo500fx.h) \
$(wildcard include/config/mach/g3evm.h) \
$(wildcard include/config/mach/z3/dm355.h) \
$(wildcard include/config/mach/w90p910evb.h) \
$(wildcard include/config/mach/w90p920evb.h) \
$(wildcard include/config/mach/w90p950evb.h) \
$(wildcard include/config/mach/w90n960evb.h) \
$(wildcard include/config/mach/camhd.h) \
$(wildcard include/config/mach/mvc100.h) \
$(wildcard include/config/mach/electrum/200.h) \
$(wildcard include/config/mach/htcjade.h) \
$(wildcard include/config/mach/memphis.h) \
$(wildcard include/config/mach/imx27sbc.h) \
$(wildcard include/config/mach/lextar.h) \
$(wildcard include/config/mach/mv88f6281gtw/ge.h) \
$(wildcard include/config/mach/ncp.h) \
$(wildcard include/config/mach/z32an.h) \
$(wildcard include/config/mach/tmq/capd.h) \
$(wildcard include/config/mach/omap3/wl.h) \
$(wildcard include/config/mach/chumby.h) \
$(wildcard include/config/mach/atsarm9.h) \
$(wildcard include/config/mach/davinci/dm365/evm.h) \
$(wildcard include/config/mach/bahamas.h) \
$(wildcard include/config/mach/das.h) \
$(wildcard include/config/mach/minidas.h) \
$(wildcard include/config/mach/vk1000.h) \
$(wildcard include/config/mach/centro.h) \
$(wildcard include/config/mach/ctera/2bay.h) \
$(wildcard include/config/mach/edgeconnect.h) \
$(wildcard include/config/mach/nd27000.h) \
$(wildcard include/config/mach/gemalto/cobra.h) \
$(wildcard include/config/mach/ingelabs/comet.h) \
$(wildcard include/config/mach/pollux/wiz.h) \
$(wildcard include/config/mach/blackstone.h) \
$(wildcard include/config/mach/topaz.h) \
$(wildcard include/config/mach/aixle.h) \
$(wildcard include/config/mach/mw998.h) \
$(wildcard include/config/mach/nokia/rx51.h) \
$(wildcard include/config/mach/vsc5605ev.h) \
$(wildcard include/config/mach/nt98700dk.h) \
$(wildcard include/config/mach/icontact.h) \
$(wildcard include/config/mach/swarco/frcpu.h) \
$(wildcard include/config/mach/swarco/scpu.h) \
$(wildcard include/config/mach/bbox/p16.h) \
$(wildcard include/config/mach/bstd.h) \
$(wildcard include/config/mach/sbc2440ii.h) \
$(wildcard include/config/mach/pcm034.h) \
$(wildcard include/config/mach/neso.h) \
$(wildcard include/config/mach/wlnx/9g20.h) \
$(wildcard include/config/mach/omap/zoom2.h) \
$(wildcard include/config/mach/totemnova.h) \
$(wildcard include/config/mach/c5000.h) \
$(wildcard include/config/mach/unipo/at91sam9263.h) \
$(wildcard include/config/mach/ethernut5.h) \
$(wildcard include/config/mach/arm11.h) \
$(wildcard include/config/mach/cpuat9260.h) \
$(wildcard include/config/mach/cpupxa255.h) \
$(wildcard include/config/mach/cpuimx27.h) \
$(wildcard include/config/mach/cheflux.h) \
$(wildcard include/config/mach/eb/cpux9k2.h) \
$(wildcard include/config/mach/opcotec.h) \
$(wildcard include/config/mach/yt.h) \
$(wildcard include/config/mach/motoq.h) \
$(wildcard include/config/mach/bsb1.h) \
$(wildcard include/config/mach/acs5k.h) \
$(wildcard include/config/mach/milan.h) \
$(wildcard include/config/mach/quartzv2.h) \
$(wildcard include/config/mach/rsvp.h) \
$(wildcard include/config/mach/rmp200.h) \
$(wildcard include/config/mach/snapper/9260.h) \
$(wildcard include/config/mach/dsm320.h) \
$(wildcard include/config/mach/adsgcm.h) \
$(wildcard include/config/mach/ase2/400.h) \
$(wildcard include/config/mach/pizza.h) \
$(wildcard include/config/mach/spot/ngpl.h) \
$(wildcard include/config/mach/armata.h) \
$(wildcard include/config/mach/exeda.h) \
$(wildcard include/config/mach/mx31sf005.h) \
$(wildcard include/config/mach/f5d8231/4/v2.h) \
$(wildcard include/config/mach/q2440.h) \
$(wildcard include/config/mach/qq2440.h) \
$(wildcard include/config/mach/mini2440.h) \
$(wildcard include/config/mach/colibri300.h) \
$(wildcard include/config/mach/jades.h) \
$(wildcard include/config/mach/spark.h) \
$(wildcard include/config/mach/benzina.h) \
$(wildcard include/config/mach/blaze.h) \
$(wildcard include/config/mach/linkstation/ls/hgl.h) \
$(wildcard include/config/mach/htcvenus.h) \
$(wildcard include/config/mach/sony/prs505.h) \
$(wildcard include/config/mach/hanlin/v3.h) \
$(wildcard include/config/mach/sapphira.h) \
$(wildcard include/config/mach/dack/sda/01.h) \
$(wildcard include/config/mach/armbox.h) \
$(wildcard include/config/mach/harris/rvp.h) \
$(wildcard include/config/mach/ribaldo.h) \
$(wildcard include/config/mach/agora.h) \
$(wildcard include/config/mach/omap3/mini.h) \
$(wildcard include/config/mach/a9sam6432/b.h) \
$(wildcard include/config/mach/usg2410.h) \
$(wildcard include/config/mach/pc72052/i10/revb.h) \
$(wildcard include/config/mach/mx35/exm32.h) \
$(wildcard include/config/mach/topas910.h) \
$(wildcard include/config/mach/hyena.h) \
$(wildcard include/config/mach/pospax.h) \
$(wildcard include/config/mach/hdl/gx.h) \
$(wildcard include/config/mach/ctera/4bay.h) \
$(wildcard include/config/mach/ctera/plug/c.h) \
$(wildcard include/config/mach/crwea/plug/i.h) \
$(wildcard include/config/mach/egauge2.h) \
$(wildcard include/config/mach/didj.h) \
$(wildcard include/config/mach/meister.h) \
$(wildcard include/config/mach/htcblackstone.h) \
$(wildcard include/config/mach/cpuat9g20.h) \
$(wildcard include/config/mach/smdk6440.h) \
$(wildcard include/config/mach/omap/35xx/mvp.h) \
$(wildcard include/config/mach/ctera/plug/i.h) \
$(wildcard include/config/mach/pvg610.h) \
$(wildcard include/config/mach/hprw6815.h) \
$(wildcard include/config/mach/omap3/oswald.h) \
$(wildcard include/config/mach/nas4220b.h) \
$(wildcard include/config/mach/htcraphael/cdma.h) \
$(wildcard include/config/mach/htcdiamond/cdma.h) \
$(wildcard include/config/mach/scaler.h) \
$(wildcard include/config/mach/zylonite2.h) \
$(wildcard include/config/mach/aspenite.h) \
$(wildcard include/config/mach/teton.h) \
$(wildcard include/config/mach/ttc/dkb.h) \
$(wildcard include/config/mach/bishop2.h) \
$(wildcard include/config/mach/ippv5.h) \
$(wildcard include/config/mach/farm926.h) \
$(wildcard include/config/mach/mmccpu.h) \
$(wildcard include/config/mach/sgmsfl.h) \
$(wildcard include/config/mach/tt8000.h) \
$(wildcard include/config/mach/zrn4300lp.h) \
$(wildcard include/config/mach/mptc.h) \
$(wildcard include/config/mach/h6051.h) \
$(wildcard include/config/mach/pvg610/101.h) \
$(wildcard include/config/mach/stamp9261/pc/evb.h) \
$(wildcard include/config/mach/pelco/odysseus.h) \
$(wildcard include/config/mach/tny/a9260.h) \
$(wildcard include/config/mach/tny/a9g20.h) \
$(wildcard include/config/mach/aesop/mp2530f.h) \
$(wildcard include/config/mach/dx900.h) \
$(wildcard include/config/mach/cpodc2.h) \
$(wildcard include/config/mach/tilt/8925.h) \
$(wildcard include/config/mach/davinci/dm357/evm.h) \
$(wildcard include/config/mach/swordfish.h) \
$(wildcard include/config/mach/corvus.h) \
$(wildcard include/config/mach/taurus.h) \
$(wildcard include/config/mach/axm.h) \
$(wildcard include/config/mach/axc.h) \
$(wildcard include/config/mach/baby.h) \
$(wildcard include/config/mach/mp200.h) \
$(wildcard include/config/mach/pcm043.h) \
$(wildcard include/config/mach/hanlin/v3c.h) \
$(wildcard include/config/mach/kbk9g20.h) \
$(wildcard include/config/mach/adsturbog5.h) \
$(wildcard include/config/mach/avenger/lite1.h) \
$(wildcard include/config/mach/suc.h) \
$(wildcard include/config/mach/at91sam7s256.h) \
$(wildcard include/config/mach/mendoza.h) \
$(wildcard include/config/mach/kira.h) \
$(wildcard include/config/mach/mx1hbm.h) \
$(wildcard include/config/mach/quatro43xx.h) \
$(wildcard include/config/mach/quatro4230.h) \
$(wildcard include/config/mach/nsb400.h) \
$(wildcard include/config/mach/drp255.h) \
$(wildcard include/config/mach/thoth.h) \
$(wildcard include/config/mach/firestone.h) \
$(wildcard include/config/mach/asusp750.h) \
$(wildcard include/config/mach/ctera/dl.h) \
$(wildcard include/config/mach/socr.h) \
$(wildcard include/config/mach/htcoxygen.h) \
$(wildcard include/config/mach/heroc.h) \
$(wildcard include/config/mach/zeno6800.h) \
$(wildcard include/config/mach/sc2mcs.h) \
$(wildcard include/config/mach/gene100.h) \
$(wildcard include/config/mach/as353x.h) \
$(wildcard include/config/mach/sheevaplug.h) \
$(wildcard include/config/mach/at91sam9g20.h) \
$(wildcard include/config/mach/mv88f6192gtw/fe.h) \
$(wildcard include/config/mach/cc9200.h) \
$(wildcard include/config/mach/sm9200.h) \
$(wildcard include/config/mach/tp9200.h) \
$(wildcard include/config/mach/snapperdv.h) \
$(wildcard include/config/mach/avengers/lite.h) \
$(wildcard include/config/mach/avengers/lite1.h) \
$(wildcard include/config/mach/omap3axon.h) \
$(wildcard include/config/mach/ma8xx.h) \
$(wildcard include/config/mach/mp201ek.h) \
$(wildcard include/config/mach/davinci/tux.h) \
$(wildcard include/config/mach/mpa1600.h) \
$(wildcard include/config/mach/pelco/troy.h) \
$(wildcard include/config/mach/nsb667.h) \
$(wildcard include/config/mach/rovers5/4mpix.h) \
$(wildcard include/config/mach/twocom.h) \
$(wildcard include/config/mach/ubisys/p9/rcu3r2.h) \
$(wildcard include/config/mach/hero/espresso.h) \
$(wildcard include/config/mach/afeusb.h) \
$(wildcard include/config/mach/t830.h) \
$(wildcard include/config/mach/spd8020/cc.h) \
$(wildcard include/config/mach/om/3d7k.h) \
$(wildcard include/config/mach/picocom2.h) \
$(wildcard include/config/mach/uwg4mx27.h) \
$(wildcard include/config/mach/uwg4mx31.h) \
$(wildcard include/config/mach/cherry.h) \
$(wildcard include/config/mach/mx51/babbage.h) \
$(wildcard include/config/mach/s3c2440turkiye.h) \
$(wildcard include/config/mach/tx37.h) \
$(wildcard include/config/mach/sbc2800/9g20.h) \
$(wildcard include/config/mach/benzglb.h) \
$(wildcard include/config/mach/benztd.h) \
$(wildcard include/config/mach/cartesio/plus.h) \
$(wildcard include/config/mach/solrad/g20.h) \
$(wildcard include/config/mach/mx27wallace.h) \
$(wildcard include/config/mach/fmzwebmodul.h) \
$(wildcard include/config/mach/rd78x00/masa.h) \
$(wildcard include/config/mach/smallogger.h) \
$(wildcard include/config/mach/ccw9p9215.h) \
$(wildcard include/config/mach/dm355/leopard.h) \
$(wildcard include/config/mach/ts219.h) \
$(wildcard include/config/mach/tny/a9263.h) \
$(wildcard include/config/mach/apollo.h) \
$(wildcard include/config/mach/at91cap9stk.h) \
$(wildcard include/config/mach/spc300.h) \
$(wildcard include/config/mach/eko.h) \
$(wildcard include/config/mach/ccw9m2443.h) \
$(wildcard include/config/mach/ccw9m2443js.h) \
$(wildcard include/config/mach/m2m/router/device.h) \
$(wildcard include/config/mach/star9104nas.h) \
$(wildcard include/config/mach/pca100.h) \
$(wildcard include/config/mach/z3/dm365/mod/01.h) \
$(wildcard include/config/mach/hipox.h) \
$(wildcard include/config/mach/omap3/piteds.h) \
$(wildcard include/config/mach/bm150r.h) \
$(wildcard include/config/mach/tbone.h) \
$(wildcard include/config/mach/merlin.h) \
$(wildcard include/config/mach/falcon.h) \
$(wildcard include/config/mach/davinci/da850/evm.h) \
$(wildcard include/config/mach/s5p6440.h) \
$(wildcard include/config/mach/at91sam9g10ek.h) \
$(wildcard include/config/mach/omap/4430sdp.h) \
$(wildcard include/config/mach/lpc313x.h) \
$(wildcard include/config/mach/magx/zn5.h) \
$(wildcard include/config/mach/magx/em30.h) \
$(wildcard include/config/mach/magx/ve66.h) \
$(wildcard include/config/mach/meesc.h) \
$(wildcard include/config/mach/otc570.h) \
$(wildcard include/config/mach/bcu2412.h) \
$(wildcard include/config/mach/beacon.h) \
$(wildcard include/config/mach/actia/tgw.h) \
$(wildcard include/config/mach/e4430.h) \
$(wildcard include/config/mach/ql300.h) \
$(wildcard include/config/mach/btmavb101.h) \
$(wildcard include/config/mach/btmawb101.h) \
$(wildcard include/config/mach/sq201.h) \
$(wildcard include/config/mach/quatro45xx.h) \
$(wildcard include/config/mach/openpad.h) \
$(wildcard include/config/mach/tx25.h) \
$(wildcard include/config/mach/omap3/torpedo.h) \
$(wildcard include/config/mach/htcraphael/k.h) \
$(wildcard include/config/mach/lal43.h) \
$(wildcard include/config/mach/htcraphael/cdma500.h) \
$(wildcard include/config/mach/anw6410.h) \
$(wildcard include/config/mach/htcprophet.h) \
$(wildcard include/config/mach/cfa/10022.h) \
$(wildcard include/config/mach/imx27/visstrim/m10.h) \
$(wildcard include/config/mach/px2imx27.h) \
$(wildcard include/config/mach/stm3210e/eval.h) \
$(wildcard include/config/mach/dvs10.h) \
$(wildcard include/config/mach/portuxg20.h) \
$(wildcard include/config/mach/arm/spv.h) \
$(wildcard include/config/mach/smdkc110.h) \
$(wildcard include/config/mach/cabespresso.h) \
$(wildcard include/config/mach/hmc800.h) \
$(wildcard include/config/mach/sholes.h) \
$(wildcard include/config/mach/btmxc31.h) \
$(wildcard include/config/mach/dt501.h) \
$(wildcard include/config/mach/ktx.h) \
$(wildcard include/config/mach/omap3517evm.h) \
$(wildcard include/config/mach/netspace/v2.h) \
$(wildcard include/config/mach/netspace/max/v2.h) \
$(wildcard include/config/mach/d2net/v2.h) \
$(wildcard include/config/mach/net2big/v2.h) \
$(wildcard include/config/mach/net4big/v2.h) \
$(wildcard include/config/mach/net5big/v2.h) \
$(wildcard include/config/mach/endb2443.h) \
$(wildcard include/config/mach/inetspace/v2.h) \
$(wildcard include/config/mach/tros.h) \
$(wildcard include/config/mach/pelco/homer.h) \
$(wildcard include/config/mach/ofsp8.h) \
$(wildcard include/config/mach/at91sam9g45ekes.h) \
$(wildcard include/config/mach/guf/cupid.h) \
$(wildcard include/config/mach/eab1r.h) \
$(wildcard include/config/mach/cordoba.h) \
$(wildcard include/config/mach/irvine.h) \
$(wildcard include/config/mach/sff772.h) \
$(wildcard include/config/mach/pelco/milano.h) \
$(wildcard include/config/mach/pc7302.h) \
$(wildcard include/config/mach/bip6000.h) \
$(wildcard include/config/mach/silvermoon.h) \
$(wildcard include/config/mach/vc0830.h) \
$(wildcard include/config/mach/dt430.h) \
$(wildcard include/config/mach/ji42pf.h) \
$(wildcard include/config/mach/gnet/ksm.h) \
$(wildcard include/config/mach/gnet/sgm.h) \
$(wildcard include/config/mach/gnet/sgr.h) \
$(wildcard include/config/mach/omap3/icetekevm.h) \
$(wildcard include/config/mach/pnp.h) \
$(wildcard include/config/mach/ctera/2bay/k.h) \
$(wildcard include/config/mach/ctera/2bay/u.h) \
$(wildcard include/config/mach/sas/c.h) \
$(wildcard include/config/mach/vma2315.h) \
$(wildcard include/config/mach/vcs.h) \
$(wildcard include/config/mach/spear600.h) \
$(wildcard include/config/mach/spear300.h) \
$(wildcard include/config/mach/spear1300.h) \
$(wildcard include/config/mach/lilly1131.h) \
$(wildcard include/config/mach/arvoo/ax301.h) \
$(wildcard include/config/mach/mapphone.h) \
$(wildcard include/config/mach/legend.h) \
$(wildcard include/config/mach/salsa.h) \
$(wildcard include/config/mach/lounge.h) \
$(wildcard include/config/mach/vision.h) \
$(wildcard include/config/mach/vmb20.h) \
$(wildcard include/config/mach/hy2410.h) \
$(wildcard include/config/mach/hy9315.h) \
$(wildcard include/config/mach/bullwinkle.h) \
$(wildcard include/config/mach/arm/ultimator2.h) \
$(wildcard include/config/mach/vs/v210.h) \
$(wildcard include/config/mach/vs/v212.h) \
$(wildcard include/config/mach/hmt.h) \
$(wildcard include/config/mach/suen3.h) \
$(wildcard include/config/mach/vesper.h) \
$(wildcard include/config/mach/str9.h) \
$(wildcard include/config/mach/omap3/wl/ff.h) \
$(wildcard include/config/mach/simcom.h) \
$(wildcard include/config/mach/mcwebio.h) \
$(wildcard include/config/mach/omap3/phrazer.h) \
$(wildcard include/config/mach/darwin.h) \
$(wildcard include/config/mach/oratiscomu.h) \
$(wildcard include/config/mach/rtsbc20.h) \
$(wildcard include/config/mach/i780.h) \
$(wildcard include/config/mach/gemini324.h) \
$(wildcard include/config/mach/oratislan.h) \
$(wildcard include/config/mach/oratisalog.h) \
$(wildcard include/config/mach/oratismadi.h) \
$(wildcard include/config/mach/oratisot16.h) \
$(wildcard include/config/mach/oratisdesk.h) \
$(wildcard include/config/mach/v2p/ca9.h) \
$(wildcard include/config/mach/sintexo.h) \
$(wildcard include/config/mach/cm3389.h) \
$(wildcard include/config/mach/omap3/cio.h) \
$(wildcard include/config/mach/sgh/i900.h) \
$(wildcard include/config/mach/bst100.h) \
$(wildcard include/config/mach/passion.h) \
$(wildcard include/config/mach/indesign/at91sam.h) \
$(wildcard include/config/mach/c4/badger.h) \
$(wildcard include/config/mach/c4/viper.h) \
$(wildcard include/config/mach/d2net.h) \
$(wildcard include/config/mach/bigdisk.h) \
$(wildcard include/config/mach/notalvision.h) \
$(wildcard include/config/mach/omap3/kboc.h) \
$(wildcard include/config/mach/cyclone.h) \
$(wildcard include/config/mach/ninja.h) \
$(wildcard include/config/mach/at91sam9g20ek/2mmc.h) \
$(wildcard include/config/mach/bcmring.h) \
$(wildcard include/config/mach/resol/dl2.h) \
$(wildcard include/config/mach/ifosw.h) \
$(wildcard include/config/mach/htcrhodium.h) \
$(wildcard include/config/mach/htctopaz.h) \
$(wildcard include/config/mach/matrix504.h) \
$(wildcard include/config/mach/mrfsa.h) \
$(wildcard include/config/mach/sc/p270.h) \
$(wildcard include/config/mach/atlas5/evb.h) \
$(wildcard include/config/mach/pelco/lobox.h) \
$(wildcard include/config/mach/dilax/pcu200.h) \
$(wildcard include/config/mach/leonardo.h) \
$(wildcard include/config/mach/zoran/approach7.h) \
$(wildcard include/config/mach/dp6xx.h) \
$(wildcard include/config/mach/bcm2153/vesper.h) \
$(wildcard include/config/mach/passionc.h) \
$(wildcard include/config/mach/clickc.h) \
$(wildcard include/config/mach/zb/gateway.h) \
$(wildcard include/config/mach/tazcard.h) \
$(wildcard include/config/mach/tazdev.h) \
$(wildcard include/config/mach/annax/cb/arm.h) \
$(wildcard include/config/mach/annax/dm3.h) \
$(wildcard include/config/mach/cerebric.h) \
$(wildcard include/config/mach/orca.h) \
$(wildcard include/config/mach/pc9260.h) \
$(wildcard include/config/mach/ems285a.h) \
$(wildcard include/config/mach/gec2410.h) \
$(wildcard include/config/mach/gec2440.h) \
$(wildcard include/config/mach/arch/mw903.h) \
$(wildcard include/config/mach/mw2440.h) \
$(wildcard include/config/mach/ecac2378.h) \
$(wildcard include/config/mach/tazkiosk.h) \
$(wildcard include/config/mach/whiterabbit/mch.h) \
$(wildcard include/config/mach/sbox9263.h) \
$(wildcard include/config/mach/oreo.h) \
$(wildcard include/config/mach/smdk6442.h) \
$(wildcard include/config/mach/openrd/base.h) \
$(wildcard include/config/mach/incredible.h) \
$(wildcard include/config/mach/incrediblec.h) \
$(wildcard include/config/mach/heroct.h) \
$(wildcard include/config/mach/mmnet1000.h) \
$(wildcard include/config/mach/devkit8000.h) \
$(wildcard include/config/mach/devkit9000.h) \
$(wildcard include/config/mach/mx31txtr.h) \
$(wildcard include/config/mach/u380.h) \
$(wildcard include/config/mach/hualu/board.h) \
$(wildcard include/config/mach/npcmx50.h) \
$(wildcard include/config/mach/mx51/lange51.h) \
$(wildcard include/config/mach/mx51/lange52.h) \
$(wildcard include/config/mach/riom.h) \
$(wildcard include/config/mach/comcas.h) \
$(wildcard include/config/mach/wsi/mx27.h) \
$(wildcard include/config/mach/cm/t35.h) \
$(wildcard include/config/mach/net2big.h) \
$(wildcard include/config/mach/motorola/a1600.h) \
$(wildcard include/config/mach/igep0020.h) \
$(wildcard include/config/mach/igep0010.h) \
$(wildcard include/config/mach/mv6281gtwge2.h) \
$(wildcard include/config/mach/scat100.h) \
$(wildcard include/config/mach/sanmina.h) \
$(wildcard include/config/mach/momento.h) \
$(wildcard include/config/mach/nuc9xx.h) \
$(wildcard include/config/mach/nuc910evb.h) \
$(wildcard include/config/mach/nuc920evb.h) \
$(wildcard include/config/mach/nuc950evb.h) \
$(wildcard include/config/mach/nuc945evb.h) \
$(wildcard include/config/mach/nuc960evb.h) \
$(wildcard include/config/mach/nuc932evb.h) \
$(wildcard include/config/mach/nuc900.h) \
$(wildcard include/config/mach/sd1soc.h) \
$(wildcard include/config/mach/ln2440bc.h) \
$(wildcard include/config/mach/rsbc.h) \
$(wildcard include/config/mach/openrd/client.h) \
$(wildcard include/config/mach/hpipaq11x.h) \
$(wildcard include/config/mach/wayland.h) \
$(wildcard include/config/mach/acnbsx102.h) \
$(wildcard include/config/mach/hwat91.h) \
$(wildcard include/config/mach/at91sam9263cs.h) \
$(wildcard include/config/mach/csb732.h) \
$(wildcard include/config/mach/u8500.h) \
$(wildcard include/config/mach/huqiu.h) \
$(wildcard include/config/mach/mx51/kunlun.h) \
$(wildcard include/config/mach/pmt1g.h) \
$(wildcard include/config/mach/htcelf.h) \
$(wildcard include/config/mach/armadillo420.h) \
$(wildcard include/config/mach/armadillo440.h) \
$(wildcard include/config/mach/u/chip/dual/arm.h) \
$(wildcard include/config/mach/csr/bdb3.h) \
$(wildcard include/config/mach/dolby/cat1018.h) \
$(wildcard include/config/mach/hy9307.h) \
$(wildcard include/config/mach/a/es.h) \
$(wildcard include/config/mach/davinci/irif.h) \
$(wildcard include/config/mach/agama9263.h) \
$(wildcard include/config/mach/marvell/jasper.h) \
$(wildcard include/config/mach/flint.h) \
$(wildcard include/config/mach/tavorevb3.h) \
$(wildcard include/config/mach/sch/m490.h) \
$(wildcard include/config/mach/rbl01.h) \
$(wildcard include/config/mach/omnifi.h) \
$(wildcard include/config/mach/otavalo.h) \
$(wildcard include/config/mach/sienna.h) \
$(wildcard include/config/mach/htc/excalibur/s620.h) \
$(wildcard include/config/mach/htc/opal.h) \
$(wildcard include/config/mach/touchbook.h) \
$(wildcard include/config/mach/latte.h) \
$(wildcard include/config/mach/xa200.h) \
$(wildcard include/config/mach/nimrod.h) \
$(wildcard include/config/mach/cc9p9215/3g.h) \
$(wildcard include/config/mach/cc9p9215/3gjs.h) \
$(wildcard include/config/mach/tk71.h) \
$(wildcard include/config/mach/comham3525.h) \
$(wildcard include/config/mach/mx31erebus.h) \
$(wildcard include/config/mach/mcardmx27.h) \
$(wildcard include/config/mach/paradise.h) \
$(wildcard include/config/mach/tide.h) \
$(wildcard include/config/mach/wzl2440.h) \
$(wildcard include/config/mach/sdrdemo.h) \
$(wildcard include/config/mach/ethercan2.h) \
$(wildcard include/config/mach/ecmimg20.h) \
$(wildcard include/config/mach/omap/dragon.h) \
$(wildcard include/config/mach/halo.h) \
$(wildcard include/config/mach/huangshan.h) \
$(wildcard include/config/mach/vl/ma2sc.h) \
$(wildcard include/config/mach/raumfeld/rc.h) \
$(wildcard include/config/mach/raumfeld/connector.h) \
$(wildcard include/config/mach/raumfeld/speaker.h) \
$(wildcard include/config/mach/multibus/master.h) \
$(wildcard include/config/mach/multibus/pbk.h) \
$(wildcard include/config/mach/tnetv107x.h) \
$(wildcard include/config/mach/snake.h) \
$(wildcard include/config/mach/cwmx27.h) \
$(wildcard include/config/mach/sch/m480.h) \
$(wildcard include/config/mach/platypus.h) \
$(wildcard include/config/mach/pss2.h) \
$(wildcard include/config/mach/davinci/apm150.h) \
$(wildcard include/config/mach/str9100.h) \
$(wildcard include/config/mach/net5big.h) \
$(wildcard include/config/mach/seabed9263.h) \
$(wildcard include/config/mach/mx51/m2id.h) \
$(wildcard include/config/mach/octvocplus/eb.h) \
$(wildcard include/config/mach/klk/firefox.h) \
$(wildcard include/config/mach/klk/wirma.h) \
$(wildcard include/config/mach/klk/wirma/mmi.h) \
$(wildcard include/config/mach/supersonic.h) \
$(wildcard include/config/mach/liberty.h) \
$(wildcard include/config/mach/mh355.h) \
$(wildcard include/config/mach/pc7802.h) \
$(wildcard include/config/mach/gnet/sgc.h) \
$(wildcard include/config/mach/einstein15.h) \
$(wildcard include/config/mach/cmpd.h) \
$(wildcard include/config/mach/davinci/hase1.h) \
$(wildcard include/config/mach/lgeincitephone.h) \
$(wildcard include/config/mach/ea313x.h) \
$(wildcard include/config/mach/fwbd/39064.h) \
$(wildcard include/config/mach/fwbd/390128.h) \
$(wildcard include/config/mach/pelco/moe.h) \
$(wildcard include/config/mach/minimix27.h) \
$(wildcard include/config/mach/omap3/thunder.h) \
$(wildcard include/config/mach/mx27amata.h) \
$(wildcard include/config/mach/bgat1.h) \
$(wildcard include/config/mach/buzz.h) \
$(wildcard include/config/mach/mb9g20.h) \
$(wildcard include/config/mach/yushan.h) \
$(wildcard include/config/mach/lizard.h) \
$(wildcard include/config/mach/omap3polycom.h) \
$(wildcard include/config/mach/smdkv210.h) \
$(wildcard include/config/mach/bravo.h) \
$(wildcard include/config/mach/siogentoo1.h) \
$(wildcard include/config/mach/siogentoo2.h) \
$(wildcard include/config/mach/sm3k.h) \
$(wildcard include/config/mach/acer/tempo/f900.h) \
$(wildcard include/config/mach/sst61vc010/dev.h) \
$(wildcard include/config/mach/glittertind.h) \
$(wildcard include/config/mach/omap/zoom3.h) \
$(wildcard include/config/mach/omap/3630sdp.h) \
$(wildcard include/config/mach/cybook2440.h) \
$(wildcard include/config/mach/torino/s.h) \
$(wildcard include/config/mach/havana.h) \
$(wildcard include/config/mach/beaumont/11.h) \
$(wildcard include/config/mach/vanguard.h) \
$(wildcard include/config/mach/s5pc110/draco.h) \
$(wildcard include/config/mach/cartesio/two.h) \
$(wildcard include/config/mach/aster.h) \
$(wildcard include/config/mach/voguesv210.h) \
$(wildcard include/config/mach/acm500x.h) \
$(wildcard include/config/mach/km9260.h) \
$(wildcard include/config/mach/nideflexg1.h) \
$(wildcard include/config/mach/ctera/plug/io.h) \
$(wildcard include/config/mach/smartq7.h) \
$(wildcard include/config/mach/at91sam9g10ek2.h) \
$(wildcard include/config/mach/asusp527.h) \
$(wildcard include/config/mach/at91sam9g20mpm2.h) \
$(wildcard include/config/mach/topasa900.h) \
$(wildcard include/config/mach/electrum/100.h) \
$(wildcard include/config/mach/mx51grb.h) \
$(wildcard include/config/mach/xea300.h) \
$(wildcard include/config/mach/htcstartrek.h) \
$(wildcard include/config/mach/lima.h) \
$(wildcard include/config/mach/csb740.h) \
$(wildcard include/config/mach/usb/s8815.h) \
$(wildcard include/config/mach/watson/efm/plugin.h) \
$(wildcard include/config/mach/milkyway.h) \
$(wildcard include/config/mach/g4evm.h) \
$(wildcard include/config/mach/picomod6.h) \
$(wildcard include/config/mach/omapl138/hawkboard.h) \
$(wildcard include/config/mach/ip6000.h) \
$(wildcard include/config/mach/ip6010.h) \
$(wildcard include/config/mach/utm400.h) \
$(wildcard include/config/mach/omap3/zybex.h) \
$(wildcard include/config/mach/wireless/space.h) \
$(wildcard include/config/mach/sx560.h) \
$(wildcard include/config/mach/ts41x.h) \
$(wildcard include/config/mach/elphel10373.h) \
$(wildcard include/config/mach/rhobot.h) \
$(wildcard include/config/mach/mx51/refresh.h) \
$(wildcard include/config/mach/ls9260.h) \
$(wildcard include/config/mach/shank.h) \
$(wildcard include/config/mach/qsd8x50/st1.h) \
$(wildcard include/config/mach/at91sam9m10ekes.h) \
$(wildcard include/config/mach/hiram.h) \
$(wildcard include/config/mach/phy3250.h) \
$(wildcard include/config/mach/ea3250.h) \
$(wildcard include/config/mach/fdi3250.h) \
$(wildcard include/config/mach/whitestone.h) \
$(wildcard include/config/mach/at91sam9263nit.h) \
$(wildcard include/config/mach/ccmx51.h) \
$(wildcard include/config/mach/ccmx51js.h) \
$(wildcard include/config/mach/ccwmx51.h) \
$(wildcard include/config/mach/ccwmx51js.h) \
$(wildcard include/config/mach/mini6410.h) \
$(wildcard include/config/mach/tiny6410.h) \
$(wildcard include/config/mach/nano6410.h) \
$(wildcard include/config/mach/at572d940hfnldb.h) \
$(wildcard include/config/mach/htcleo.h) \
$(wildcard include/config/mach/avp13.h) \
$(wildcard include/config/mach/xxsvideod.h) \
$(wildcard include/config/mach/vpnext.h) \
$(wildcard include/config/mach/swarco/itc3.h) \
$(wildcard include/config/mach/tx51.h) \
$(wildcard include/config/mach/dolby/cat1021.h) \
$(wildcard include/config/mach/mx28evk.h) \
$(wildcard include/config/mach/phoenix260.h) \
$(wildcard include/config/mach/uvaca/stork.h) \
$(wildcard include/config/mach/smartq5.h) \
$(wildcard include/config/mach/all3078.h) \
$(wildcard include/config/mach/ctera/2bay/ds.h) \
$(wildcard include/config/mach/siogentoo3.h) \
$(wildcard include/config/mach/epb5000.h) \
$(wildcard include/config/mach/hy9263.h) \
$(wildcard include/config/mach/acer/tempo/m900.h) \
$(wildcard include/config/mach/acer/tempo/dx900.h) \
$(wildcard include/config/mach/acer/tempo/x960.h) \
$(wildcard include/config/mach/acer/eten/v900.h) \
$(wildcard include/config/mach/acer/eten/x900.h) \
$(wildcard include/config/mach/bonnell.h) \
$(wildcard include/config/mach/oht/mx27.h) \
$(wildcard include/config/mach/htcquartz.h) \
$(wildcard include/config/mach/davinci/dm6467tevm.h) \
$(wildcard include/config/mach/c3ax03.h) \
$(wildcard include/config/mach/mxt/td60.h) \
$(wildcard include/config/mach/esyx.h) \
$(wildcard include/config/mach/dove/db2.h) \
$(wildcard include/config/mach/bulldog.h) \
$(wildcard include/config/mach/derell/me2000.h) \
$(wildcard include/config/mach/bcmring/base.h) \
$(wildcard include/config/mach/bcmring/evm.h) \
$(wildcard include/config/mach/bcmring/evm/jazz.h) \
$(wildcard include/config/mach/bcmring/sp.h) \
$(wildcard include/config/mach/bcmring/sv.h) \
$(wildcard include/config/mach/bcmring/sv/jazz.h) \
$(wildcard include/config/mach/bcmring/tablet.h) \
$(wildcard include/config/mach/bcmring/vp.h) \
$(wildcard include/config/mach/bcmring/evm/seikor.h) \
$(wildcard include/config/mach/bcmring/sp/wqvga.h) \
$(wildcard include/config/mach/bcmring/custom.h) \
$(wildcard include/config/mach/acer/s200.h) \
$(wildcard include/config/mach/bt270.h) \
$(wildcard include/config/mach/iseo.h) \
$(wildcard include/config/mach/cezanne.h) \
$(wildcard include/config/mach/lucca.h) \
$(wildcard include/config/mach/supersmart.h) \
$(wildcard include/config/mach/cs/misano.h) \
$(wildcard include/config/mach/magnolia2.h) \
$(wildcard include/config/mach/emxx.h) \
$(wildcard include/config/mach/outlaw.h) \
$(wildcard include/config/mach/riot/bei2.h) \
$(wildcard include/config/mach/riot/vox.h) \
$(wildcard include/config/mach/riot/x37.h) \
$(wildcard include/config/mach/mega25mx.h) \
$(wildcard include/config/mach/benzina2.h) \
$(wildcard include/config/mach/ignite.h) \
$(wildcard include/config/mach/foggia.h) \
$(wildcard include/config/mach/arezzo.h) \
$(wildcard include/config/mach/leica/skywalker.h) \
$(wildcard include/config/mach/jacinto2/jamr.h) \
$(wildcard include/config/mach/gts/nova.h) \
$(wildcard include/config/mach/p3600.h) \
$(wildcard include/config/mach/dlt2.h) \
$(wildcard include/config/mach/df3120.h) \
$(wildcard include/config/mach/ecucore/9g20.h) \
$(wildcard include/config/mach/nautel/lpc3240.h) \
$(wildcard include/config/mach/glacier.h) \
$(wildcard include/config/mach/phrazer/bulldog.h) \
$(wildcard include/config/mach/omap3/bulldog.h) \
$(wildcard include/config/mach/pca101.h) \
$(wildcard include/config/mach/buzzc.h) \
$(wildcard include/config/mach/sasie2.h) \
$(wildcard include/config/mach/davinci/cio.h) \
$(wildcard include/config/mach/smartmeter/dl.h) \
$(wildcard include/config/mach/wzl6410.h) \
$(wildcard include/config/mach/wzl6410m.h) \
$(wildcard include/config/mach/wzl6410f.h) \
$(wildcard include/config/mach/wzl6410i.h) \
$(wildcard include/config/mach/spacecom1.h) \
$(wildcard include/config/mach/pingu920.h) \
$(wildcard include/config/mach/bravoc.h) \
$(wildcard include/config/mach/cybo2440.h) \
$(wildcard include/config/mach/vdssw.h) \
$(wildcard include/config/mach/romulus.h) \
$(wildcard include/config/mach/omap/magic.h) \
$(wildcard include/config/mach/eltd100.h) \
$(wildcard include/config/mach/capc7117.h) \
$(wildcard include/config/mach/swan.h) \
$(wildcard include/config/mach/veu.h) \
$(wildcard include/config/mach/rm2.h) \
$(wildcard include/config/mach/tt2100.h) \
$(wildcard include/config/mach/venice.h) \
$(wildcard include/config/mach/pc7323.h) \
$(wildcard include/config/mach/masp.h) \
$(wildcard include/config/mach/fujitsu/tvstbsoc.h) \
$(wildcard include/config/mach/fujitsu/tvstbsoc1.h) \
$(wildcard include/config/mach/lexikon.h) \
$(wildcard include/config/mach/mini2440v2.h) \
$(wildcard include/config/mach/icontrol.h) \
$(wildcard include/config/mach/sheevad.h) \
$(wildcard include/config/mach/qsd8x50a/st1/1.h) \
$(wildcard include/config/mach/qsd8x50a/st1/5.h) \
$(wildcard include/config/mach/bee.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/linkage.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/irqflags.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/linux/stat.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/stat.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/usr/bin/../lib/gcc/arm-eabi/4.5.0/include/stdarg.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/bitops.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/domain.h \
$(wildcard include/config/verify/permission/fault.h) \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/math64.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/div64.h \
include/linux/kmod.h \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/wait.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/current.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/errno.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/elf.h \
include/linux/elf-em.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/elf.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/preempt/rcu.h) \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/slab_def.h \
include/linux/kmalloc_sizes.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/completion.h \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/module.h \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/has/dma.h) \
$(wildcard include/config/xfrm.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/ipv6/ndisc/nodetype.h) \
$(wildcard include/config/mac80211.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/network/secmark.h) \
include/linux/net.h \
$(wildcard include/config/sysctl.h) \
include/linux/socket.h \
$(wildcard include/config/proc/fs.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/socket.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/sockios.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/random.h \
include/linux/ioctl.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/irqnr.h \
include/linux/fcntl.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/sysctl.h \
include/linux/textsearch.h \
include/linux/err.h \
include/net/checksum.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/uaccess.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/checksum.h \
include/linux/in6.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/semaphore.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/device.h \
$(wildcard include/config/dmabounce.h) \
include/linux/pm_wakeup.h \
$(wildcard include/config/pm.h) \
include/linux/dma-mapping.h \
$(wildcard include/config/have/dma/attrs.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/dma-mapping.h \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rbtree.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/scatterlist.h \
$(wildcard include/config/debug/sg.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/scatterlist.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-msm/include/mach/vmalloc.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/io.h \
arch/arm/mach-msm/include/mach/io.h \
include/asm-generic/dma-coherent.h \
$(wildcard include/config/have/generic/dma/coherent.h) \
include/linux/hrtimer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/high/res/timers.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/timex.h \
arch/arm/mach-msm/include/mach/timex.h \
include/linux/netfilter/x_tables.h \
$(wildcard include/config/x86/64.h) \
include/linux/netdevice.h \
$(wildcard include/config/dcb.h) \
$(wildcard include/config/wlan/80211.h) \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/mac80211/mesh.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/net/dsa.h) \
$(wildcard include/config/net/ns.h) \
$(wildcard include/config/compat/net/dev/ops.h) \
$(wildcard include/config/net/dsa/tag/dsa.h) \
$(wildcard include/config/net/dsa/tag/trailer.h) \
$(wildcard include/config/netpoll/trap.h) \
include/linux/if.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
include/linux/if_packet.h \
include/linux/timer.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/delay.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/delay.h \
include/linux/workqueue.h \
include/net/net_namespace.h \
$(wildcard include/config/ipv6.h) \
$(wildcard include/config/ip/dccp.h) \
$(wildcard include/config/netfilter.h) \
$(wildcard include/config/net.h) \
include/net/netns/core.h \
include/net/netns/mib.h \
$(wildcard include/config/xfrm/statistics.h) \
include/net/snmp.h \
include/linux/snmp.h \
include/net/netns/unix.h \
include/net/netns/packet.h \
include/net/netns/ipv4.h \
$(wildcard include/config/ip/multiple/tables.h) \
include/net/inet_frag.h \
include/net/netns/ipv6.h \
$(wildcard include/config/ipv6/multiple/tables.h) \
$(wildcard include/config/ipv6/mroute.h) \
$(wildcard include/config/ipv6/pimsm/v2.h) \
include/net/netns/dccp.h \
include/net/netns/x_tables.h \
include/linux/netfilter.h \
$(wildcard include/config/netfilter/debug.h) \
$(wildcard include/config/nf/nat/needed.h) \
include/linux/in.h \
include/net/flow.h \
include/linux/proc_fs.h \
$(wildcard include/config/proc/devicetree.h) \
$(wildcard include/config/proc/kcore.h) \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/path.h \
include/linux/radix-tree.h \
include/linux/pid.h \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/magic.h \
include/net/netns/conntrack.h \
$(wildcard include/config/nf/conntrack/events.h) \
include/net/netns/xfrm.h \
include/linux/xfrm.h \
include/linux/seq_file_net.h \
include/linux/seq_file.h \
include/net/dsa.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/iowait/acct.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/group/sched.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/ipcbuf.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/sigcontext.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
include/linux/key.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/aio_abi.h \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/hardirq.h \
/home/jacob/source/wildfire-kernel/arch/arm/include/asm/irq.h \
arch/arm/mach-msm/include/mach/irqs.h \
include/linux/irq_cpustat.h \
include/linux/netfilter_ipv4.h \
include/linux/netfilter/xt_comment.h \
net/netfilter/xt_comment.o: $(deps_net/netfilter/xt_comment.o)
$(deps_net/netfilter/xt_comment.o):
| HCDRJacob/wildfire-kernel | net/netfilter/.xt_comment.o.cmd | bat | gpl-2.0 | 152,861 |
echo --creating bin directory--
mkdir bin
echo --compiling contents of /src--
javac -cp .:lib/* src/*/*.java -d bin
| 0151n/Particles | compile_win.bat | bat | gpl-2.0 | 117 |
cmd_build_x86_64_linux/xlib/xhash.o := gcc -Wp,-MD,build_x86_64_linux/xlib/xhash.o.d -D_X86_64 -fno-strict-aliasing -fno-common -ffreestanding -fomit-frame-pointer -march=k8 -mtune=nocona -mno-red-zone -mcmodel=kernel -pipe -fno-reorder-blocks -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-stack-protector -DLINUX -pipe -fno-builtin-sprintf -fno-builtin-log2 -fno-builtin-puts -fno-strict-aliasing -fno-common -fomit-frame-pointer -Wall -I/home/david/ndas4linux/3.3.4/inc -I/home/david/ndas4linux/3.3.4/inc/lspx -D__LITTLE_ENDIAN_BYTEORDER -D__LITTLE_ENDIAN_BITFIELD -D__LITTLE_ENDIAN__ -DNDAS_VER_MAJOR="3" -DNDAS_VER_MINOR="3" -DNDAS_VER_BUILD="4" -O2 -DXPLAT_SIO -DXPLAT_NDASHIX -DXPLAT_PNP -DXPLAT_ASYNC_IO -DXPLAT_RESTORE -DRELEASE -DXPLAT_BPC -O2 -c -o build_x86_64_linux/xlib/xhash.o xlib/xhash.c
deps_build_x86_64_linux/xlib/xhash.o := \
xlib/xhash.c \
/home/david/ndas4linux/3.3.4/inc/xplatcfg.h \
/home/david/ndas4linux/3.3.4/inc/dbgcfg.h \
/home/david/ndas4linux/3.3.4/inc/sal/libc.h \
/home/david/ndas4linux/3.3.4/inc/sal/linux/libc.h \
/home/david/ndas4linux/3.3.4/inc/sal/sal.h \
/home/david/ndas4linux/3.3.4/inc/ndasuser/ndaserr.h \
/home/david/ndas4linux/3.3.4/inc/sal/linux/sal.h \
/home/david/ndas4linux/3.3.4/inc/xlib/gtypes.h \
/home/david/ndas4linux/3.3.4/inc/glibconfig.h \
$(wildcard include/config/h/.h) \
/home/david/ndas4linux/3.3.4/inc/sal/types.h \
/home/david/ndas4linux/3.3.4/inc/xlib/xhash.h \
/home/david/ndas4linux/3.3.4/inc/sal/types.h \
/home/david/ndas4linux/3.3.4/inc/sal/mem.h \
/home/david/ndas4linux/3.3.4/inc/sal/debug.h \
/home/david/ndas4linux/3.3.4/inc/sal/linux/debug.h \
build_x86_64_linux/xlib/xhash.o: $(deps_build_x86_64_linux/xlib/xhash.o)
$(deps_build_x86_64_linux/xlib/xhash.o):
| iocellnetworks/ndas4linux | 3.3.4/build_x86_64_linux/xlib/xhash.o.cmd | bat | gpl-2.0 | 1,786 |
cmd_crypto/built-in.o := /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ld -EL -r -o crypto/built-in.o crypto/crypto.o crypto/crypto_wq.o crypto/crypto_algapi.o crypto/aead.o crypto/crypto_blkcipher.o crypto/chainiv.o crypto/eseqiv.o crypto/crypto_hash.o crypto/pcompress.o crypto/cryptomgr.o crypto/hmac.o crypto/md5.o crypto/sha1_generic.o crypto/ecb.o crypto/cbc.o crypto/des_generic.o crypto/twofish.o crypto/twofish_common.o crypto/aes_generic.o crypto/arc4.o crypto/deflate.o crypto/crc32c.o crypto/authenc.o crypto/rng.o crypto/krng.o
| wujiku/superstar-kernel-shooter-2.3.4gb | crypto/.built-in.o.cmd | bat | gpl-2.0 | 558 |
cmd_arch/arm/mach-imx/lpddr3_freq_imx.o := arm-poky-linux-gnueabi-gcc -Wp,-MD,arch/arm/mach-imx/.lpddr3_freq_imx.o.d -nostdinc -isystem /opt/poky/1.7/sysroots/i686-pokysdk-linux/usr/lib/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.1/include -I/second_extend/yocto_file/linux_yocto/arch/arm/include -Iarch/arm/include/generated -Iinclude -I/second_extend/yocto_file/linux_yocto/arch/arm/include/uapi -Iarch/arm/include/generated/uapi -I/second_extend/yocto_file/linux_yocto/include/uapi -Iinclude/generated/uapi -include /second_extend/yocto_file/linux_yocto/include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -mfpu=vfp -funwind-tables -marm -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -Wa,-march=armv7-a -c -o arch/arm/mach-imx/lpddr3_freq_imx.o arch/arm/mach-imx/lpddr3_freq_imx.S
source_arch/arm/mach-imx/lpddr3_freq_imx.o := arch/arm/mach-imx/lpddr3_freq_imx.S
deps_arch/arm/mach-imx/lpddr3_freq_imx.o := \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
$(wildcard include/config/thumb2/kernel.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
$(wildcard include/config/kprobes.h) \
include/linux/stringify.h \
include/linux/export.h \
$(wildcard include/config/have/underscore/symbol/prefix.h) \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/linkage.h \
arch/arm/mach-imx/hardware.h \
arch/arm/include/generated/asm/sizes.h \
include/asm-generic/sizes.h \
include/linux/sizes.h \
arch/arm/mach-imx/mxc.h \
$(wildcard include/config/soc/imx1.h) \
$(wildcard include/config/soc/imx21.h) \
$(wildcard include/config/soc/imx25.h) \
$(wildcard include/config/soc/imx27.h) \
$(wildcard include/config/soc/imx31.h) \
$(wildcard include/config/soc/imx35.h) \
$(wildcard include/config/soc/imx51.h) \
$(wildcard include/config/soc/imx53.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/arch/dma/addr/t/64bit.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/uapi/linux/types.h \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/uapi/asm-generic/int-ll64.h \
arch/arm/include/generated/asm/bitsperlong.h \
include/asm-generic/bitsperlong.h \
include/uapi/asm-generic/bitsperlong.h \
arch/arm/mach-imx/mx51.h \
$(wildcard include/config/sdma/iram.h) \
/second_extend/yocto_file/linux_yocto/arch/arm/include/asm/irq.h \
$(wildcard include/config/sparse/irq.h) \
$(wildcard include/config/multi/irq/handler.h) \
arch/arm/mach-imx/mx53.h \
arch/arm/mach-imx/mx3x.h \
arch/arm/mach-imx/mx31.h \
arch/arm/mach-imx/mx35.h \
arch/arm/mach-imx/mx2x.h \
arch/arm/mach-imx/mx21.h \
arch/arm/mach-imx/mx27.h \
arch/arm/mach-imx/mx1.h \
arch/arm/mach-imx/mx25.h \
arch/arm/mach-imx/mx6.h \
arch/arm/mach-imx/mx7.h \
arch/arm/mach-imx/lpddr3_freq_imx.o: $(deps_arch/arm/mach-imx/lpddr3_freq_imx.o)
$(deps_arch/arm/mach-imx/lpddr3_freq_imx.o):
| heyoufei2/yocto3.14.38_kernel | arch/arm/mach-imx/.lpddr3_freq_imx.o.cmd | bat | gpl-2.0 | 3,678 |
@echo off
setlocal
set PRODUCT_ROOT=C:\tl\tegra3
rem set path=C:\tl\rvct\win_32-pentium;%path%
rem set ARMLMD_LICENSE_FILE=C:\Program Files\ARM\rvds.dat
set RVCT40INC=C:\Program Files\ARM\RVCT\Data\4.0\400\include\windows
set RVCT40LIB=C:\Program Files\ARM\RVCT\Data\4.0\400\lib
set RVCT40BIN=C:\tl\rvct\win_32-pentium
cd /d %~dp0
REM Check environment variable used...
if not "%PRODUCT_ROOT%" == "" goto SET_CONFIG
echo wrong path PRODUCT_ROOT:[%PRODUCT_ROOT%]
exit /B 1
REM Set default compilation options (release and cortex A9)
:SET_CONFIG
SET OUTPUT_DIR="release"
SET DEFAULT_OPTIONS=-DARM --fpu=none -O3 -Ospace -DSSDI_NO_TRACE -DNDEBUG
SET DEBUG_OPTIONS=-DARM --fpu=none -g -O3 -DSSDI_DEBUG
SET CPU_OPTION=Cortex-A9
REM Obsolette CPU_OPTION was : ARM1176JZF-S
goto CHECKFORSWITCHES
:CHECKFORSWITCHES
REM Read script param
IF "%1"=="-debug" goto SET_DEBUG
IF "%1"=="-release" goto SET_RELEASE
IF "%1"=="-cpu" goto SET_CPU
IF "%1"=="" goto BEGIN
SHIFT
GOTO CHECKFORSWITCHES
:SET_DEBUG
SET OUTPUT_DIR="debug"
SET DEFAULT_OPTIONS=%DEBUG_OPTIONS%
@echo Building Service in debug mode
SHIFT
GOTO CHECKFORSWITCHES
:SET_RELEASE
REM In release, we do nothing, we simply keep the default options
@echo Building Service in release mode
SHIFT
GOTO CHECKFORSWITCHES
:SET_CPU
SET CPU_OPTION=%2
SHIFT
SHIFT
GOTO CHECKFORSWITCHES
REM Print environment and start build...
:BEGIN
echo.
echo -------------------------------------------------------------
echo OEMCrypto SECURE SERVICE
echo PRODUCT_ROOT = %PRODUCT_ROOT%
echo compile option = %DEFAULT_OPTIONS%
echo cpu option = %CPU_OPTION%
echo -------------------------------------------------------------
echo.
mkdir %OUTPUT_DIR%
pushd %OUTPUT_DIR%
echo. > armcc_via.txt
set OPTIONS=%DEFAULT_OPTIONS% --cpu=%CPU_OPTION% --fpu=none --dllimport_runtime
echo %OPTIONS% >> armcc_via.txt
echo -I %PRODUCT_ROOT%\tf_sdk\include >> armcc_via.txt
echo -I ..\..\..\..\..\..\..\vendor\nvidia\tegra\core\include >> armcc_via.txt
echo -I ..\..\..\..\..\..\..\vendor\nvidia\tegra\multimedia-partner\nvmm\include >> armcc_via.txt
echo Compile oemcrypto_secure_service sources
echo -c --multifile >> armcc_via.txt
echo ..\..\src\oemcrypto_secure_service.c >> armcc_via.txt
echo --thumb -o thumb_objects.o >> armcc_via.txt
armcc --via armcc_via.txt
@if ERRORLEVEL 1 goto BUILD_ERROR
echo Compile the resources
%PRODUCT_ROOT%\tf_sdk\tools\ix86_win32\tf_resc.exe --output ../../tools/oemcrypto_secure_service.manifest.o --target elf --manifest ../../tools/oemcrypto_secure_service.manifest.txt
@if ERRORLEVEL 1 goto BUILD_ERROR
echo Linking the service oemcrypto_secure_service
echo. > armlink_via.txt
echo --bpabi --fpu=none --pltgot=none --dll --callgraph --feedback linkfeed.txt -o oemcrypto_secure_service_no_feedback.srvx ../../tools/oemcrypto_secure_service.manifest.o thumb_objects.o >> armlink_via.txt
echo %PRODUCT_ROOT%\tf_sdk\lib\arm_rvct\libssdi.so %PRODUCT_ROOT%\tf_sdk\lib\arm_rvct\libAES_CTS.a >> armlink_via.txt
armlink --via armlink_via.txt
fromelf --text -cdezasv --output oemcrypto_secure_service_no_feedback.srvx.txt oemcrypto_secure_service_no_feedback.srvx
@if ERRORLEVEL 1 goto BUILD_ERROR
echo Compile with feedback
armcc --via armcc_via.txt --feedback linkfeed.txt
@if ERRORLEVEL 1 goto BUILD_ERROR
echo Link the service oemcrypto_secure_service (after feedback)
echo. > armlink_via.txt
echo --bpabi --fpu=none --pltgot=none --dll --callgraph -o oemcrypto_secure_service.srvx ../../tools/oemcrypto_secure_service.manifest.o thumb_objects.o >> armlink_via.txt
echo %PRODUCT_ROOT%\tf_sdk\lib\arm_rvct\libssdi.so %PRODUCT_ROOT%\tf_sdk\lib\arm_rvct\libAES_CTS.a >> armlink_via.txt
armlink --via armlink_via.txt
fromelf --text -cdezasv --output oemcrypto_secure_service.srvx.txt oemcrypto_secure_service.srvx
@if ERRORLEVEL 1 goto BUILD_ERROR
pause
popd
endlocal
goto :EOF
:BUILD_ERROR
echo.
echo Script exited on error!
pause
popd
endlocal
exit /B 1
| DmitryADP/diff_qc750 | 3rdparty/trustedlogic/samples/widevine/tegra3/build/build_oemcrypto_service.bat | bat | gpl-2.0 | 4,053 |
@echo off
setlocal
:top
set iosdataver=0.1beta2
set currentversion=0.1.beta4
set agreedversion=
set NUSLmin=/min
set MKFversion=2011-11 v1
set MKFdownload=2011-11v1
mode con cols=85 lines=54
COLOR 1F
TITLE NUSL
::check for supporting apps that AVs are known to remove
:check
if not exist Support mkdir Support
if not exist Support\wget.exe goto:wget
if not exist Support\7za.exe goto:7za
if not exist Support\nusd.exe goto:nusd
if not exist Support\settings.bat goto:settingsbat
if not exist Support\settings.exe goto:settingsexe
if not exist Support\sfk.exe goto:sfk
if not exist Support\wit.exe goto:wit
if not exist Support\wwt.exe goto:wwt
goto :titleNUSL
::------------------------------Downloade-Dateien-die-fehlen--------------------------------
:7za
CLS
echo 7za fehlt!
echo Downloade...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Support/7za.exe"
move 7za.exe Support
goto :check
:nusd
CLS
echo nusd fehlt!
echo Downloade...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Support/nusd.exe"
move nusd.exe Support
goto :check
:settingsbat
CLS
echo settings.bat fehlt!
echo Downloade...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Support/settings.bat"
move settings.bat Support
goto :check
:settingsexe
CLS
echo settings.exe fehlt!
echo Downloade...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Support/settings.exe"
move settings.exe Support
goto :check
:sfk
CLS
echo sfk fehlt!
echo Downloade...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Support/sfk.exe"
move sfk.exe Support
goto :check
:wget
CLS
echo wget fehlt!
echo Downloade...
@ping 127.0.0.1 -n 3 -w 1000> nul
CLS
echo - Uups, wget fehlt ja!
@ping 127.0.0.1 -n 2 -w 1000> nul
CLS
echo Lustig dieses arme Programm zu bestrafen?
@ping 127.0.0.1 -n 4 -w 1000> nul
CLS
echo Hilf mir!
echo.
echo Es ffnet sich gleich eine Seite! Downloade das Programm und kopiere wget hierrein:
echo %cd%
@ping 127.0.0.1 -n 5 -w 1000> nul
start http://downloads.consolearea.square7.de/nusl/files/Support/wget.exe
CLS
echo Ich warte derweil auf einen Tastendruck, wenn du dann die wget abgelegt hast
echo und zwar hier:
echo.
echo %cd%
pause >NUL
if not exist wget.exe goto :wget2
move wget.exe Support
goto :check
:wget2
echo Lustig dieses arme Programm zu bestrafen?
@ping 127.0.0.1 -n 4 -w 1000> nul
start http://downloads.consolearea.square7.de/nusl/files/Support/wget.exe
CLS
echo Ich warte derweil auf einen Tastendruck, wenn du dann die wget abgelegt hast
echo und zwar hier:
echo.
echo %cd%
pause >NUL
if not exist wget.exe goto :wget2
move wget.exe Support
goto :check
:wit
CLS
echo wit fehlt!
echo Downloade...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Support/wit.exe"
move wit.exe Support
goto :check
:wwt
CLS
echo wwt fehlt!
echo Downloade...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Support/wwt.exe"
move wwt.exe Support
goto :check
:titleNUSL
call support\Settings.bat
if not exist %windir%\Microsoft.NET\Framework\v3.5 goto:framework
if exist Support\scam.txt goto :a
set warning=
CLS
echo NUSL %CURRENTVERSION%
echo by the WiiDatabase Team
echo.
echo.
color 1F
::---------------------------------------------------------
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] THIS SOFTWARE MUST NOT BE SOLD
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 7 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 NEITHER ALONE NOR AS PART OF A BUNDLE.
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 3 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 IF YOU PAID FOR THIS SOFTWARE OR RECEIVED
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 IT AS PART OF A BUNDLE FOLLOWING PAYMENT,
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 YOU HAVE BEEN SCAMMED
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 7 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 AND SHOULD DEMAND YOUR MONEY BACK IMMEDIATLEY
echo.
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 2 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green] For furhter details see
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Cyan] http://hbc.hackmii.com/scam
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 7 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] USE THIS AT YOUR OWN RISK!
echo.
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 7 -w 1000> nul
Support\sfk echo -spat \x20 THIS PACKAGE COMES WITH ABSOLUTELY NO WARRANTY, NEITHER STATED NOR IMPLIED.
Support\sfk echo -spat \x20 NO ONE BUT YOURSELF IS TO BE HELD RESPONSIBLE FOR ANY DAMAGE THIS MAY CAUSE
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 TO YOUR NINTENDO WII CONSOLE!
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 7 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] YOU CAN REDISTRIBUTE THIS SOFTWARE
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 2 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green] BUT IT'S COPYRIGHTED TO
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Cyan] http://wiidatabase.de.tl
if /i "%AGREEDVERSION%" NEQ "%CURRENTVERSION%" @ping 127.0.0.1 -n 7 -w 1000> nul
@echo.
echo Please type the word 'I' and then 'Agree' with a Space between those two words.
set /p warning= Enter Selection Here:
if /i "%warning%" EQU "I Agree" goto:save
echo.
echo Schlieáe NUSL...
@ping 127.0.0.1 -n 2 -w 1000> nul
Exit
:save
::Save version agreed to
if exist Support\settings.bat Support\sfk filter -quiet settings.bat -ls!"set AGREEDVERSION=" -write -yes
echo set AGREEDVERSION=%currentversion%>> Support\settings.bat
:a
TITLE NUSL
COLOR 1F
if not exist temp mkdir temp
set MENU=
echo.
CLS
echo v%CURRENTVERSION%
echo.
::if not exist Support\Beta.txt echo AN = Anderes
echo.
echo A = Apps
echo.
echo N = NUS betreten
echo.
echo.
echo.
if exist %DRIVE% echo ANZ = Verzeichnis anzeigen
echo.
echo O = Optionen
echo.
if not exist Support\CREDITS.txt echo CR = Credits
echo.
echo.
echo C = Changelog
echo.
echo E = Exit
echo.
set /p MENU= Eingabe:
if /i "%MENU%" EQU "AN" goto:Hauptfunktionen
if /i "%MENU%" EQU "ANZ" goto:show
if /i "%MENU%" EQU "A" goto:Apps
if /i "%MENU%" EQU "N" goto:NUS
if /i "%MENU%" EQU "IOS" goto:IOSData
if /i "%MENU%" EQU "O" goto:options
if /i "%MENU%" EQU "CR" goto:Credits
if /i "%MENU%" EQU "C" goto:Changes
if /i "%MENU%" EQU "F" goto:framework
if /i "%MENU%" EQU "E" goto:exit
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:a
:Changes
CLS
echo Changelog wird gedownloadet...
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/Readmii.rtf"
if not exist temp mkdir temp
move /y Readmii.rtf temp
start temp\Readmii.rtf
echo.
echo.
echo.
@ping 127.0.0.1 -n 4 -w 1000> nul
goto:a
:Credits
CLS
set CREDIT1=
echo NUSL %CURRENTVERSION%
echo by the WiiDatabase Team
echo.
echo CREDITS
echo ===========
echo.
echo.
echo NUSL wurde nur von mir geschrieben: iCON
echo Aber ohne die Hilfe von anderen wre NUSL jetzt nicht das was es jetzt ist!
echo NUSL %CURRENTVERSION%
echo.
echo Danke an ModMii, von diesem Programm habe ich wirklich viel gelernt.
echo Damit geht auch dank an XFlak, der ModMii geschrieben hat!
support\sfk echo -spat \x20 [Green]ModMii Donations can be sent via paypal to: \x20 [email protected]
echo.
support\sfk echo -spat \x20 [Red]Anyone who donates $1 or more to ModMii will get a functional ModMii Easter Egg!
echo.
support\sfk echo -spat \x20 [Green]$ = Open ModMii's donation webpage (paypal) and get your Easter Egg!
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo. Û²²²²²
set /p CREDIT1= Drcke Enter um fortzufahren!
if /i "%CREDIT1%" EQU "$" start https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick^&hosted_button_id=DDHSQJPHDDXVW
if /i "%CREDIT1%" EQU "$" goto:Credit1
if /i "%CREDIT1%" EQU "B" goto:a
if /i "%CREDIT1%" EQU "M" goto:a
:Credit2
CLS
set CREDIT2=
echo NUSL %CURRENTVERSION%
echo by the WiiDatabase Team
echo.
echo CREDITS
echo ===========
echo.
echo Ich mchte danken:
echo.
support\sfk echo -spat \x20 [Red]Team Twiizers
echo =============
echo Danke an Team Twiizers, die den Hackmii Installer erfunden haben und nie aufgeben,
echo falls Nintendo mal wieder ein Update rausbringt :D
echo.
support\sfk echo -spat \x20 [Red]Wii-Homebrew.com
echo =============
echo Eines der besten Foren der Welt! Hier habe ich wirklich viel ber Homebrew
echo und anderes gelernt! Dort bin ich bekannt als
support\sfk echo -spat \x20 [Yellow]Brawl345
echo.
support\sfk echo -spat \x20 [Red]Wiimm
echo =============
echo Danke an Wiimm, dass er WIT und WWT erfunden hat! Sehr ntzliche Tools!
echo.
echo.
echo.
echo.
echo.
echo.
echo. ÛÛÛ²²²
set /p CREDIT2= Drcke Enter um fortzufahren!
:Credit3
CLS
set CREDIT3=
echo NUSL %CURRENTVERSION%
echo by the WiiDatabase Team
echo.
echo CREDITS
echo ===========
echo.
support\sfk echo -spat \x20 [Red]Ein ganz spezielles Dank geht auch an dich!
echo =============
echo Danke, dass du NUSL %CURRENTVERSION% benutzt!
echo.
echo.
echo.
support\sfk echo -spat \x20 [Red]Aktuelle Einstellungen:
echo =============
echo NUSL %CURRENTVERSION%
echo Kann Wiimms Mario Kart Fun %MKFversion% vorbereiten
echo Wads und Apps werden gespeichert in:
echo %DRIVE%
echo Programme sind gespeichert in:
echo %cd%\Support
if exist Support\Scam.txt echo Die Scammeldung ist ausgeschaltet
if not exist Support\Scam.txt echo Die Scammeldung ist angeschaltet
if exist Support\CREDITS.txt echo Die Credits sind abgeschaltet - Moment, wie hast du das gefunden?
if not exist Support\CREDITS.txt echo Die Credits sind angeschalten - Ergibt auch Sinn!
echo.
echo.
support\sfk echo -spat \x20 [Red]Einstellungen ndern
echo =============
echo D = Wads und Apps Speicherort ndern
::if exist Support\Scam.txt echo S- = Scammeldung wieder aktivieren
::if not exist Support\Scam.txt echo S+ = Scammeldung abschalten
::if not exist Support\CREDITS.txt echo C- = Credits anschalten
::if exist Support\CREDITS.txt echo C+ = Credits ausschalten
echo Z = Zurck zum Start
echo.
echo. ÛÛÛÛÛÛ
set /p CREDIT3= Eingabe:
if /i "%CREDIT3%" EQU "D" goto:DRIVECHANGE
if /i "%CREDIT3%" EQU "S-" goto:Scamon
if /i "%CREDIT3%" EQU "S+" goto:Scamoff
if /i "%CREDIT3%" EQU "C+" goto:Creditsaus
if /i "%CREDIT3%" EQU "C-" goto:Creditsan
if /i "%CREDIT3%" EQU "Z" goto:a
echo Zurck zum Start...
@ping 127.0.0.1 -n 4 -w 1000> nul
goto:a
::-----------------------------------Optionen-----------------------------------------------
:options
CLS
set options=
echo Version %CURRENTVERSION%
echo.
::if not exist Support\scam.txt echo S+ = Scam Warnung nicht mehr anzeigen
::if exist Support\scam.txt echo S- = Scam Warnung wieder anzeigen
echo.
::if not exist Support\CREDITS.txt echo C+ = Credits Menpunkt ausschalten
::if exist Support\CREDITS.txt echo C- = Credits Menpunkt anschalten
echo.
::if not exist Support\Beta.txt echo H+ = Hauptfunktionen nicht anzeigen (nur Beta)
::if exist Support\Beta.txt echo H- = Hauptfunktionen wieder anzeigen (Vor einem Update machen)
echo.
echo D = Dateipfad aendern (Eingestellt auf %Drive%)
echo.
echo Z = Zurck
echo.
set /p options= Eingabe:
if /i "%options%" EQU "S+" goto:scamoff
if /i "%options%" EQU "S-" goto:Scamon
if /i "%options%" EQU "C+" goto:Creditsan
if /i "%options%" EQU "C-" goto:Creditsaus
if /i "%options%" EQU "H+" goto:hauptaus
if /i "%options%" EQU "H-" goto:hauptan
if /i "%options%" EQU "D" goto:DRIVECHANGE
if /i "%options%" EQU "Z" goto:a
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:options
:hauptaus
CLS
echo Dies schaltet die Hauptfunktionen aus! >> Support\Beta.txt
goto :options
:hauptan
CLS
del Support\Beta.txt
goto :options
:Creditsan
echo Dies blendet den CREDITS Menpunkt aus im NUSL, Version %CURRENTVERSION% >> Support\CREDITS.txt
goto :options
:Creditsaus
del Support\CREDITS.txt
goto :options
:DRIVECHANGE
set drivetemp=%DRIVE%
cls
echo NUSL v%currentversion%
echo by the WiiDatabase Team
echo.
echo.
echo.
echo Wo sollen heruntergeladene Dateien gespeichert werden?
echo.
echo Aktuelle Einstellung: %DRIVE%
echo.
echo.
echo.
echo Beispiele:
echo.
echo.
echo I:\NUSL
echo.
echo %userprofile%\Desktop\COPY_TO_SD
echo.
echo.
echo.
echo.
echo. S = Standardeinstellung (COPY_TO_SD_OR_USB)
echo.
echo Z = Zurck
echo.
echo M = Men
echo.
echo.
set /p Drivetemp= Enter Selection Here:
::remove quotes from variable (if applicable)
echo "set DRIVETEMP=%DRIVETEMP%">temp.txt
support\sfk filter -quiet temp.txt -rep _""""__>temp.bat
call temp.bat
del temp.bat>nul
del temp.txt>nul
if /i "%DRIVETEMP%" EQU "Z" goto:Options
if /i "%DRIVETEMP%" EQU "M" goto:a
if /i "%DRIVETEMP%" EQU "S" set DRIVETEMP=COPY_TO_SD_OR_USB
:doublecheck
set fixslash=
if /i "%DRIVETEMP:~-1%" EQU "\" set fixslash=yes
if /i "%DRIVETEMP:~-1%" EQU "/" set fixslash=yes
if /i "%fixslash%" EQU "yes" set DRIVETEMP=%DRIVETEMP:~0,-1%
if /i "%fixslash%" EQU "yes" goto:doublecheck
::if second char is ":" check if drive exists
if /i "%DRIVETEMP:~1,1%" NEQ ":" goto:skipcheck
if exist "%DRIVETEMP:~0,2%" (goto:skipcheck) else (echo.)
echo %DRIVETEMP:~0,2% doesn't exist, please try again...
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:DRIVECHANGE
:skipcheck
set DRIVE=%DRIVETEMP%
set REALDRIVE=%DRIVE%
::autosave drive setting to settings.bat
support\sfk filter Support\settings.bat -!"Set Drive=" -write -yes>nul
echo Set Drive=%DRIVE%>>Support\settings.bat
if /i "%MENU1%" EQU "FC" goto:FileCleanup
if /i "%MENU1%" EQU "U" set BACKB4QUEUE=DRIVECHANGE
if /i "%MENU1%" EQU "U" goto:DOWNLOADQUEUE
if /i "%MENU1%" NEQ "W" goto:skip
if /i "%USBCONFIG%" EQU "USB" (set BACKB4QUEUE=DRIVEUCHANGE) else (set BACKB4QUEUE=DRIVECHANGE)
if /i "%USBCONFIG%" EQU "USB" (goto:DRIVEUCHANGE) else (goto:download)
:skip
if /i "%SNEEKTYPE%" EQU "U" set BACKB4DRIVEU=DRIVECHANGE
if /i "%SNEEKTYPE%" EQU "UD" set BACKB4DRIVEU=DRIVECHANGE
if /i "%SNEEKTYPE%" EQU "U" goto:DRIVEUCHANGE
if /i "%SNEEKTYPE%" EQU "UD" goto:DRIVEUCHANGE
if /i "%SNEEKSELECT%" EQU "2" set B4SNKPAGE3=DRIVECHANGE
if /i "%SNEEKSELECT%" EQU "3" set B4SNKPAGE3=DRIVECHANGE
if /i "%SNEEKSELECT%" EQU "2" goto:snkpage3
if /i "%SNEEKSELECT%" EQU "3" goto:snkpage3
if /i "%SNEEKSELECT%" EQU "1" set B4SNKCONFIRM=DRIVECHANGE
if /i "%SNEEKSELECT%" EQU "1" goto:SNKNANDCONFIRM
if /i "%MENU1%" EQU "1" goto:%BACKB4DRIVE%
if /i "%MENU1%" EQU "2" goto:%BACKB4DRIVE%
if /i "%MENU1%" EQU "3" goto:%BACKB4DRIVE%
if /i "%MENU1%" EQU "4" goto:%BACKB4DRIVE%
if /i "%MENU1%" EQU "A" goto:%BACKB4DRIVE%
if /i "%CREDIT3%" EQU "D" goto:CREDIT3
goto:Options
::----------------------------OptionenEnde--------------------------------------------------
:framework
CLS
echo NUSL bentigt Microsoft .NET Framework 3.5!
echo.
set FrameworkAttempt=0
:NETFRAMEWORK
SET /a FrameworkAttempt=%FrameworkAttempt%+1
if exist "temp\dotNetFx35setup.exe" goto:semiskip
echo Downloading .NET Framework 3.5 Installer...
echo.
start %NUSLmin%/wait support\wget -t 3 "http://download.microsoft.com/download/7/0/3/703455ee-a747-4cc8-bd3e-98a615c3aedb/dotNetFx35setup.exe"
::start %NUSLmin%/wait support\wget -c -l1 -r -nd --retr-symlinks -t10 -T30 --random-wait "http://download.microsoft.com/download/7/0/3/703455ee-a747-4cc8-bd3e-98a615c3aedb/dotNetFx35setup.exe"
if not exist temp mkdir temp
if exist dotNetFx35setup.exe move /y dotNetFx35setup.exe temp\dotNetFx35setup.exe
:semiskip
echo Starte Installer und warte bis die Installation fertig ist...
echo.
start /wait temp\dotNetFx35setup.exe
if exist "%windir%\Microsoft.NET\Framework\v3.5" goto:top
:show
CLS
start %DRIVE%
goto :a
:NUS
CLS
set NUS=
echo Willkommen im Nintendo Update Server!
echo.
echo.
echo S = System
echo.
echo I = IOS [Bald verfgbar!]
echo.
echo Z = Zurck
echo.
set /P NUS= Eingabe:
if /i "%NUS%" EQU "S" goto:System
if /i "%NUS%" EQU "I" goto:IO
if /i "%NUS%" EQU "Z" goto:a
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:NUS
:IO
echo Warte auf die nchste Version!
@ping 127.0.0.1 -n 4 -w 1000> nul
goto:NUS
:System
CLS
set Kanal=
echo BC = BC
echo.
echo B = Boot2
echo.
echo E = EULA
echo.
echo Mii = Mii-Kanal
echo.
echo M = MIOS
echo.
echo N = Newskanal
echo.
echo O = Opera Internet Kanal
echo.
echo F = Fotokanal
echo.
echo F1.1 = Fotokanal 1.1
echo.
echo S = Wii-Shop Kanal (mit IOS 56)
echo.
echo Sy = Systemmen (mit dem SystemIOS)
echo.
echo W = WetterKanal
echo.
echo.
echo Z = Zurck
echo.
echo.
set /p Kanal= Eingabe:
if /i "%Kanal%" EQU "O" goto:Opera
if /i "%Kanal%" EQU "BC" goto:BC
if /i "%Kanal%" EQU "B" goto:Boot2
if /i "%Kanal%" EQU "E" goto:EULA
if /i "%Kanal%" EQU "F" goto:Fotokanal
if /i "%Kanal%" EQU "F1.1" goto:Fotokanal11
if /i "%Kanal%" EQU "N" goto:Newskanal
if /i "%Kanal%" EQU "M" goto:MIOS
if /i "%Kanal%" EQU "W" goto:Wetterkanal
if /i "%Kanal%" EQU "Mii" goto:Mii
if /i "%Kanal%" EQU "Sy" goto:Sy
if /i "%Kanal%" EQU "S" goto:Shop
if /i "%Kanal%" EQU "Z" goto:a
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:Kanale
:Newskanal
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Newskanal
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000248414750 7 packwad
if exist Support\0001000248414750\0001000248414750.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0001000248414750\0001000248414750.wad Newskanalv7.wad
Move Support\0001000248414750\Newskanalv7.wad %DRIVE%\wad
rmdir /s /q Support\0001000248414750
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:MIOS
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] MIOS
echo.
echo.
start %NUSLmin%/wait Support\nusd 0000000100000101 10 packwad
if exist Support\0000000100000101\0000000100000101.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0000000100000101\0000000100000101.wad MIOSv10.wad
Move Support\0000000100000101\MIOSv10.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000101
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:Mii
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Mii-Kanal
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000248414341 6 packwad
if exist Support\0001000248414341\0001000248414341.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0001000248414341\0001000248414341.wad Mii-Kanalv6.wad
Move Support\0001000248414341\Mii-Kanalv6.wad %DRIVE%\wad
rmdir /s /q Support\0001000248414341
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:S
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Wii-Shop Kanal
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000248414241 20 packwad
if exist Support\00001000248414241\0001000248414241.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0001000248414241\0001000248414241.wad Shopv20.wad
Move Support\0001000248414241\Shopv20.wad %DRIVE%\wad
rmdir /s /q Support\0001000248414241
echo.
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] IOS 56
echo.
echo.
nusd 0000000100000038 5662 packwad
if exist Support\0000000100000038\0000000100000038.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
RENAME Support\0000000100000038\0000000100000038.wad IOS56v5662.wad
Move Support\0000000100000038\IOS56v5662.wad
rmdir /s /q Support\0000000100000038
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Downloads abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:Sy
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Systemmen
echo.
echo.
set Sysmenu=
echo Whle dein Systemmen! [Das Passende IOS wird mitgedownloadet!]
echo.
echo 4.0 = 4.0E
echo.
echo 4.1 = 4.1E
echo.
echo 4.2 = 4.2E
echo.
echo 4.3 = 4.3E v1
echo.
echo.
echo P = In eine Datei schreiben
echo.
echo Z = Zurck
echo.
echo.
set /p Sysmenu= Eingabe:
if /i "%Sysmenu%" EQU "4.0" goto:40
if /i "%Sysmenu%" EQU "4.1" goto:41
if /i "%Sysmenu%" EQU "4.2" goto:42
if /i "%Sysmenu%" EQU "4.3" goto:43
if /i "%Sysmenu%" EQU "P" goto:Printsys
if /i "%Sysmenu%" EQU "Z" goto:System
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:Sy
:Printsys
CLS
if not exist temp mkdir temp
if exist System.rtf del System.rtf
if exist temp\System.rtf del temp\System.rtf
echo Schreibe...
echo NUSL - Nintendo Update Server Loader >> System.rtf
echo. >> System.rtf
echo Wii Firmwares und deren IOS >> System.rtf
echo Erstellt von NUSL %CURRENTVERSION% >> System.rtf
echo. >> System.rtf
echo 4.0 IOS 60 rev 6174 >> System.rtf
echo. >> System.rtf
echo 4.1 IOS 60 rev 6174 >> System.rtf
echo. >> System.rtf
echo 4.2 IOS 70 rev 6687 >> System.rtf
echo. >> System.rtf
echo 4.3v1 IOS 80 rev 6943 >> System.rtf
echo. >> System.rtf
echo 4.3v2 IOS 80 rev 6944 [Wird nicht von NUSL unterstützt!] >> System.rtf
echo. >> System.rtf
echo Diese Liste findest du im TEMP Ordner des NUSLs! >> System.rtf
echo Erfolgreich!
move System.rtf temp\System.rtf
start temp\System.rtf
goto:Sy
:40
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Wii Firmware 4.0E
echo.
echo.
echo Downloade Systemmen...
start %NUSLmin%/wait support\nusd 0000000100000002 418 packwad
if exist Support\0000000100000002\0000000100000002.wad echo Download erfolgreich!
Rename Support\0000000100000002\0000000100000002.wad System_4.0.wad
if not exist %DRIVE% mkdir %DRIVE%
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
move Support\0000000100000002\System_4.0.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000002
echo.
echo Downloade IOS 60 rev 6174
start %NUSLmin%/wait support\nusd 000000010000003C 6174 packwad
if exist Support\000000010000003C\000000010000003C.wad echo Download abgeschlossen!
rename Support\000000010000003C\000000010000003C.wad IOS60_sys_4.0_und_4.1.wad
move Support\000000010000003C\IOS60_sys_4.0_und_4.1.wad %DRIVE%\wad
rmdir /s /q Support\000000010000003C
goto :Sy
:41
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Wii Firmware 4.1E
echo.
echo.
echo Downloade Systemmen...
start %NUSLmin%/wait support\nusd 0000000100000002 450 packwad
if exist Support\0000000100000002\0000000100000002.wad echo Download erfolgreich!
Rename Support\0000000100000002\0000000100000002.wad System_4.1.wad
if not exist %DRIVE% mkdir %DRIVE%
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
move Support\0000000100000002\System_4.1.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000002
echo.
echo Downloade IOS 60 rev 6174
start %NUSLmin%/wait support\nusd 000000010000003C 6174 packwad
if exist Support\000000010000003C\000000010000003C.wad echo Download abgeschlossen!
rename Support\000000010000003C\000000010000003C.wad IOS60_sys_4.0_und_4.1.wad
move Support\000000010000003C\IOS60_sys_4.0_und_4.1.wad %DRIVE%\wad
rmdir /s /q Support\000000010000003C
goto :Sy
:42
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Wii Firmware 4.2E
echo.
echo.
echo Downloade Systemmen...
start %NUSLmin%/wait support\nusd 0000000100000002 482 packwad
if exist Support\0000000100000002\0000000100000002.wad echo Download erfolgreich!
Rename Support\0000000100000002\0000000100000002.wad System_4.2.wad
if not exist %DRIVE% mkdir %DRIVE%
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
move Support\0000000100000002\System_4.2.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000002
echo.
echo Downloade IOS 70 rev 6687
start %NUSLmin%/wait support\nusd 0000000100000046 6687 packwad
if exist Support\0000000100000046\0000000100000046.wad echo Download abgeschlossen!
rename Support\0000000100000046\0000000100000046.wad IOS70_sys_4.2.wad
move Support\0000000100000046\IOS70_sys_4.2.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000046
goto :Sy
:43
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Wii Firmware 4.3E
echo.
echo.
echo Downloade Systemmen...
start %NUSLmin%/wait support\nusd 0000000100000002 514 packwad
if exist Support\0000000100000002\0000000100000002.wad echo Download erfolgreich!
Rename Support\0000000100000002\0000000100000002.wad System_4.3.wad
if not exist %DRIVE% mkdir %DRIVE%
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
move Support\0000000100000002\System_4.3.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000002
echo.
echo Downloade IOS 80 rev 6943
start %NUSLmin%/wait support\nusd 0000000100000050 6943 packwad
if exist Support\0000000100000050\0000000100000050.wad echo Download abgeschlossen!
rename Support\0000000100000050\0000000100000050.wad IOS80_sys_4.3.wad
move Support\0000000100000050\IOS80_sys_4.3.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000050
goto :Sy
:Boot2
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Boot2
echo.
echo.
echo Boot2 is a critical part of the Wii boot sequence.
@ping 127.0.0.1 -n 3 -w 1000> nul
echo The only safe way to mess with boot2 is to install BootMii if possible.
@ping 127.0.0.1 -n 3 -w 1000> nul
echo.
echo.
start %NUSLmin%/wait Support\nusd 0000000100000001 4 packwad
if exist Support\0000000100000001\0000000100000001.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0000000100000001\0000000100000001.wad Boot2v4.wad
Move Support\0000000100000001\Boot2v4.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000001
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:EULA
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] EULA
echo.
echo.
echo This is the 'channel' for EULA acceptance.
@ping 127.0.0.1 -n 3 -w 1000> nul
echo It is wise not to mess with it!
@ping 127.0.0.1 -n 3 -w 1000> nul
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000848414B50 3 packwad
if exist Support\0001000848414B50\0001000848414B50.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0001000848414B50\0001000848414B50.wad EULAv3.wad
Move Support\0001000848414B50\EULAv3.wad %DRIVE%\wad
rmdir /s /q Support\0001000848414B50
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:Fotokanal
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Fotokanal
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000248414141 2 packwad
if exist Support\0001000248414141\0001000248414141.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0001000248414141\0001000248414141.wad Fotokanalv2.wad
Move Support\0001000248414141\Fotokanalv2.wad %DRIVE%\wad
rmdir /s /q Support\0001000248414141
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:Fotokanal11
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Fotokanal 1.1
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000248415941 3 packwad
if exist Support\0001000248415941\0001000248415941.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0001000248415941\0001000248415941.wad Fotokanal1.1v3.wad
Move Support\0001000248415941\Fotokanal1.1v3.wad %DRIVE%\wad
rmdir /s /q Support\0001000248415941
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto:System
:Opera
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Opera Internet Kanal
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000148414450 1024 packwad
if exist Support\0001000148414450\0001000148414450.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
RENAME Support\0001000148414450\0001000148414450.wad Opera_Kanal.wad
Move Support\0001000148414450\Opera_Kanal.wad %DRIVE%\wad
rmdir /s /q Support\0001000148414450
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto :System
:Wetterkanal
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Wetterkanal
echo.
echo.
start %NUSLmin%/wait Support\nusd 0001000248414650 7 packwad
Rename Support\0001000248414650\0001000248414650.wad Wetterkanalv7.wad
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
move 0001000248414650\Wetterkanalv7.wad %DRIVE%\wad
rmdir /s /q 0001000248414650
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green]Download abgeschlossen. Drcke eine Taste
pause >NUL
goto :System
:BC
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] BC
echo.
echo.
start %NUSLmin%/wait Support\nusd 0000000100000100 6 packwad
echo Download succesful
if exist Support\0000000100000100\0000000100000100.wad Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [GREEN] Download abgeschlossen!
Rename Support\0000000100000100\0000000100000100.wad BCv6.wad
if not exist %DRIVE%\wad mkdir %DRIVE%\wad
move Support\0000000100000100\BCv6.wad %DRIVE%\wad
rmdir /s /q Support\0000000100000100
echo Download abgeschlossen. Drcke eine Taste
pause >NUL
goto :System
:Apps
CLS
set Apps=
echo Y = Yet Another Wad Manager
echo.
echo H = Hackmii Installer
echo.
echo.
echo Z = Zurck
echo.
set /p Apps= Eingabe:
if /i "%Apps%" EQU "Z" goto:a
if /i "%Apps%" EQU "Y" goto:YAWMM
if /i "%Apps%" EQU "H" goto:HMI
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:Apps
:HMI
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] Hackmii Installer
echo Lade boot.elf...
start %NUSLmin%/wait support\wget -t 3 "http://thebatch.bplaced.net/NUSDL/HMI/boot.elf"
echo Lade icon.png...
start %NUSLmin%/wait support\wget -t 3 "http://thebatch.bplaced.net/NUSDL/HMI/icon.png"
echo Lade meta.xml...
start %NUSLmin%/wait support\wget -t 3 "http://thebatch.bplaced.net/NUSDL/HMI/meta.xml"
if exist boot.elf echo boot.elf existiert!
if exist icon.png echo icon.png existiert!
if exist meta.xml echo meta.xml existiert!
if not exist boot.elf echo FEHLER! Drcke eine Taste fr Neustart...
if not exist boot.elf pause >NUL
if not exist boot.elf goto :HMI
mkdir %DRIVE%\Hackmii
move /Y boot.elf %DRIVE%\Hackmii
move /Y icon.png %DRIVE%\Hackmii
move /Y meta.xml %DRIVE%\Hackmii
if not exist %DRIVE%\apps mkdir %DRIVE%\apps
move /Y %DRIVE%\Hackmii %DRIVE%\apps
echo Fertig!
echo Drcke eine Taste!
pause >NUL
goto :Apps
:YAWMM
CLS
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red]
echo Yet another Wad Manager Deutsche Version
echo Downloading boot.dol...
start %NUSLmin%/wait support\wget -t 3 "http://thebatch.bplaced.net/NUSDL/YAWMM/boot.dol"
echo Downloading icon.png...
start %NUSLmin%/wait support\wget -t 3 "http://thebatch.bplaced.net/NUSDL/YAWMM/icon.png"
echo Downloading meta.xml...
start %NUSLmin%/wait support\wget -t 3 "http://thebatch.bplaced.net/NUSDL/YAWMM/meta.xml"
mkdir %DRIVE%\YAWMM
move /Y boot.dol %DRIVE%\YAWMM
move /Y icon.png %DRIVE%\YAWMM
move /Y meta.xml %DRIVE%\YAWMM
if not exist %DRIVE%\apps mkdir %DRIVE%\apps
move /Y %DRIVE%\YAWMM %DRIVE%\apps
echo Download successful
pause
goto :Apps
:Hauptfunktionen
CLS
set Key=
echo Wie ist der Schlssel?
echo.
echo.
echo.
set /p Key= Eingabe:
if /i "%Key%" EQU "Sonne345" goto:Hauptfunktionenbeta
echo Der Schlssel ist falsch!
@ping 127.0.0.1 -n 5 -w 1000> nul
goto:wtfkey
:wtfkey
CLS
echo Was ist denn dieser "Schlssel"?
echo.
echo Mit dem Schlssel kannst du die Hauptfunktionen besuchen.
echo Der Bereich ist immoment noch Beta, aber dich erwarten tolle Funktionen!
echo Den Bereich kannst du in den Optionen verstecken!
echo.
@ping 127.0.0.1 -n 5 -w 1000> nul
echo Drcke aber jetzt erstmal eine Taste
pause >NUL
goto:a
:Hauptfunktionenbeta
set Hauptfunktionen=
CLS
echo MKF = Mario Kart Fun installieren
echo.
echo.
echo Z = Zurck
echo.
set /p Hauptfunktionen= Eingabe:
if /i "%Hauptfunktionen%" EQU "MKF" goto:Mariofun
if /i "%Hauptfunktionen%" EQU "Z" goto:a
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:Hauptfunktionen
:IOSData
CLS
TITLE IOS Database
echo Willkommen in der IOS Database %iosdataver%
echo Dies ist nur fortgeschritten Usern empfohlen!
echo.
echo.
echo Auf der Firmware auf der du bist, darfst du das entsprechende IOS AUF KEINESFALLS updaten!
echo
echo Sonst bekommst du einen Systemmen Brick!
echo Ohne Priiloader/Bootmii in boot2 stehst du dann dumm da
echo Dafr gibt es die Systemios Liste!
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] USE THIS AT YOUR OWN RISK!
echo.
Support\sfk echo -spat \x20 THIS PACKAGE COMES WITH ABSOLUTELY NO WARRANTY, NEITHER STATED NOR IMPLIED.
Support\sfk echo -spat \x20 NO ONE BUT YOURSELF IS TO BE HELD RESPONSIBLE FOR ANY DAMAGE THIS MAY CAUSE
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 TO YOUR NINTENDO WII CONSOLE!
echo.
echo.
@ping 127.0.0.1 -n 5 -w 1000> nul
@echo Wenn du die Risiken verstanden hast, drcke eine beliebige Taste
pause > NUL
goto :d
:c
CLS
type %cd%\Systemios.txt
pause
goto :d
:d
CLS
@echo IOS Database Beta 1
@echo Waehle ein IOS!
set /p EINGABE=
if "%EINGABE%"=="Systemios" goto :c
if "%EINGABE%"=="B" goto :a
if "%EINGABE%"=="B" goto :a
if "%EINGABE%"=="IOS 4" goto :4
if "%EINGABE%"=="IOS 9" goto :9
if "%EINGABE%"=="IOS 10" goto :10
if "%EINGABE%"=="IOS 11" goto :11
if "%EINGABE%"=="IOS 12" goto :12
if "%EINGABE%"=="IOS 13" goto :13
if "%EINGABE%"=="IOS 14" goto :14
if "%EINGABE%"=="IOS 15" goto :15
if "%EINGABE%"=="IOS 16" goto :16
if "%EINGABE%"=="IOS 17" goto :17
if "%EINGABE%"=="IOS 21" goto :21
if "%EINGABE%"=="IOS 22" goto :22
if "%EINGABE%"=="IOS 28" goto :28
if "%EINGABE%"=="IOS 31" goto :31
if "%EINGABE%"=="IOS 33" goto :33
if "%EINGABE%"=="IOS 34" goto :34
if "%EINGABE%"=="IOS 35" goto :35
if "%EINGABE%"=="IOS 36" goto :36
if "%EINGABE%"=="IOS 37" goto :37
if "%EINGABE%"=="IOS 38" goto :38
if "%EINGABE%"=="IOS 41" goto :41
if "%EINGABE%"=="IOS 43" goto :43
if "%EINGABE%"=="IOS 45" goto :45
if "%EINGABE%"=="IOS 46" goto :46
if "%EINGABE%"=="IOS 48" goto :48
if "%EINGABE%"=="IOS 50" goto :50
if "%EINGABE%"=="IOS 51" goto :51
if "%EINGABE%"=="IOS 52" goto :52
if "%EINGABE%"=="IOS 53" goto :53
if "%EINGABE%"=="IOS 55" goto :55
if "%EINGABE%"=="IOS 56" goto :56
if "%EINGABE%"=="IOS 57" goto :57
if "%EINGABE%"=="IOS 58" goto :58
if "%EINGABE%"=="IOS 60" goto :60
if "%EINGABE%"=="IOS 61" goto :61
if "%EINGABE%"=="IOS 70" goto :70
if "%EINGABE%"=="IOS 80" goto :80
if "%EINGABE%"=="IOS 222" goto :222
if "%EINGABE%"=="IOS 223" goto :223
if "%EINGABE%"=="IOS 249" goto :249
if "%EINGABE%"=="IOS 250" goto :250
if "%EINGABE%"=="IOS 254" goto :254
:Mariofun
CLS
set MKFbereit=
echo Dies wird dir Wiimms Mario Kart Fun %MKFversion% einrichten!
echo Bereit?
echo.
echo J = Ja
echo N = Nein
echo.
set /p MKFbereit= Eingabe:
if /i "%MKFbereit%" EQU "J" goto:Mariofundownload
if /i "%MKFbereit%" EQU "N" goto:Hauptfunktionen
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:Mariofun
:Mariofundownload
CLS
if exist temp\MarioKartFun%MKFdownload% goto:Mariofun2
if exist temp\MarioKartFun%MKFdownload%.zip goto:Mariofundownloadex
if exist MarioKartFun%MKFdownload%.zip goto:Mariofundownloadex
echo Downloade die letzte Version von Mario Kart Fun...
echo Version %MKFversion%
echo.
echo Dies kann einige Minuten dauern... Bitte habe Geduld!
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/MarioKartFun%MKFdownload%.zip
if exist MarioKartFun%MKFdownload%.zip goto:Mariofundownloadex
:errormkf
echo Ein Fehler ist aufgetreten! Neustart...
@ping 127.0.0.1 -n 4 -w 1000> nul
CLS
echo Downloade die letzte Version von Mario Kart Fun...
echo Version %MKFversion%
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/MarioKartFun%MKFdownload%.zip
if exist MarioKartFun%MKFdownload%.zip goto:Mariofundownload2
echo 2. Fehler aufgetreten! Versuche es spter erneut und prfe deine Internet Verbindung!
goto :Hauptfunktionen
:Mariofundownloadex
if not exist temp mkdir temp
if exist MarioKartFun%MKFdownload%.zip move /y MarioKartFun%MKFdownload%.zip temp
Support\7za e -aoa temp\MarioKartFun%MKFdownload%.zip -otemp\MarioKartFun%MKFdownload% *.* -r
if not exist temp\MarioKartFun%MKFdownload% goto:errormkf
:Mariofundownload2
CLS
echo.
echo Erfolgreich!
echo.
@ping 127.0.0.1 -n 5 -w 1000> nul
goto :Mariofun2
:Mariofun2
CLS
set MKFformat=
echo Welches Format hat deine Festplatte, auf der Mario Kart Wii gespeichert ist?
echo.
echo FAT32
echo NTFS
echo WBFS
echo.
set /p MKFformat= Eingabe:
if /i "%MKFformat%" EQU "FAT32" goto:FATandNTFS
if /i "%MKFformat%" EQU "NTFS" goto:FATandNTFS
if /i "%MKFformat%" EQU "WBFS" goto:WBFS
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:Mariofun2
:FATandNTFS
CLS
if exist temp\MarioKartFun%MKFdownload%\RMCP01.wbfs goto:buildmkffat
start temp\MarioKartFun%MKFdownload%
echo Ziehe die RMCP01.wbfs in das Explorer Fenster!
echo.
echo Drcke eine Taste, wenn du fertig bist!
pause >NUL
goto:buildmkffat
:buildmkffat
CLS
echo Der Builder wird jetzt gestartet!
echo.
echo.
echo Bitte warte auf den Mario Kart Fun %MKFversion% Builder, bis er fertig ist mit seinem Job...
echo.
echo Du musst als Format .wbfs nehmen!
echo.
cd temp\MarioKartFun%MKFdownload%\
start Windows-GUI.exe
@ping 127.0.0.1 -n 5 -w 1000> nul
/waít create-image.bat
CLS
echo Fertig! Kopiere das neue Image auf deine Festplatte in den WBFS Ordner!
echo Und drcke eine Taste!
pause >NUL
goto :Hauptfunktionen
:WBFS
CLS
echo Bitte warte auf Wiimms WBFS Tools, bis sie fertig sind mit ihrem Job...
Support\wwt X --auto --iso RMCP01 -d temp\MarioKartFun%MKFdownload%\MarioKartFun.iso
if exist temp\MarioKartFun%MKFdownload%\RMCP01.iso goto:WBFS2
echo Error! Restarting...
@ping 127.0.0.1 -n 5 -w 1000> nul
CLS
echo Bitte warte auf Wiimms WBFS Tools, bis sie fertig sind mit ihrem Job...
Support\wwt X --auto --iso RMCP01 -d temp\MarioKartFun%MKFdownload%\
if exist temp\MarioKartFun%MKFdownload%\RMCP01.iso goto:WBFS2
echo Error 2! Abbrechen...
@ping 127.0.0.1 -n 5 -w 1000> nul
goto :Hauptfunktionen
:WBFS2
CLS
start temp\MarioKartFun%MKFdownload%
echo Ziehe die RMCP01.wbfs in das Explorer Fenster!
echo.
echo Drcke eine Taste, wenn du fertig bist!
pause >NUL
goto:buildmkfwb
:buildmkfwb
CLS
echo Der Builder wird jetzt gestartet!
echo.
echo.
echo.
echo Bitte warte auf den Mario Kart Fun %MKFversion% Builder, bis er fertig ist mit seinem Job...
echo.
echo Du musst als Format .iso nehmen!
echo.
start /wait temp\MarioKartFun%MKFdownload%\Windows-GUI.exe
:Transfer
set Transfer=
CLS
echo Soll das Spiel gleich auf die Festplatte bertragen werden?
echo.
echo J = Ja
echo N = Nein
echo.
set /p Transfer= Eingabe:
if /i "%Transfer%" EQU "J" goto:Transfer
if /i "%Transfer%" EQU "N" goto:Transfernot
echo Dies ist keine gltige Eingabe!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto:Transfer
:Transfer
Support\wwt add --auto temp\MarioKartFun%MKFdownload%\new-image
:Transfernot
start temp\MarioKartFun%MKFdownload%\new-image
CLS
echo Fertig! Kopiere das neue Image auf deine Festplatte!
echo Und drcke eine Taste!
pause >NUL
goto :Hauptfunktionen
:no_mario
echo Keine Mario Kart Wii WBFS gefunden! Existiert der Ordner "WBFS"?
echo.
echo Drcke eine Taste
pause >NUL
goto :FATandNTFS
:4
CLS
@echo IOS 4
@echo.
@echo HINWEIS: Dieses IOS ist ein Stub!
@echo Von diesem IOS gibt es nur eine Version:
@echo 65280
@echo Downloaden?
@echo Ja = Weiter
@echo B = Zurck zur IOS Auswahl
@echo.
@echo Direkt beim Druck auf ENTER nach Eingabe von "Ja" wird der Download gestartet! Sei geduldig!
set /p EINGABE=
if "%EINGABE%"=="B" goto :d
if "%EINGABE%"=="Ja" Support\nusd 0000000100000004 65280 packwad
if "%EINGABE%"=="Ja" @echo Download Succesful!
if "%EINGABE%"=="Ja" ping 192.168.123.25 -n 2 -w 20 > NUL
if "%EINGABE%"=="Ja" goto d:
if "%EINGABE%"=="" goto :4
:Scamoff
CLS
echo NUSL %CURRENTVERSION%
echo by the WiiDatabase Team
echo.
echo.
color 1F
::---------------------------------------------------------
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] THIS SOFTWARE MUST NOT BE SOLD
@ping 127.0.0.1 -n 7 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 NEITHER ALONE NOR AS PART OF A BUNDLE.
@ping 127.0.0.1 -n 3 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 IF YOU PAID FOR THIS SOFTWARE OR RECEIVED
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 IT AS PART OF A BUNDLE FOLLOWING PAYMENT,
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 YOU HAVE BEEN SCAMMED
@ping 127.0.0.1 -n 7 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 AND SHOULD DEMAND YOUR MONEY BACK IMMEDIATLEY
echo.
@ping 127.0.0.1 -n 2 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green] For furhter details see
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Cyan] http://hbc.hackmii.com/scam
@ping 127.0.0.1 -n 7 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] USE THIS AT YOUR OWN RISK!
echo.
@ping 127.0.0.1 -n 7 -w 1000> nul
Support\sfk echo -spat \x20 THIS PACKAGE COMES WITH ABSOLUTELY NO WARRANTY, NEITHER STATED NOR IMPLIED.
Support\sfk echo -spat \x20 NO ONE BUT YOURSELF IS TO BE HELD RESPONSIBLE FOR ANY DAMAGE THIS MAY CAUSE
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 TO YOUR NINTENDO WII CONSOLE!
@ping 127.0.0.1 -n 7 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] YOU CAN REDISTRIBUTE THIS SOFTWARE
@ping 127.0.0.1 -n 2 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green] BUT IT'S COPYRIGHTED TO
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Cyan] http://wiidatabase.de.tl
@ping 127.0.0.1 -n 7 -w 1000> nul
@echo.
echo Please type the word 'I', followed by the word 'Accept' then followed by theese words: 'to','switch','off','the', 'scam' and then 'message'
echo.
@ping 127.0.0.1 -n 5 -w 1000> nul
set /p warning= Enter Selection Here:
if /i "%warning%" EQU "I Accept to switch off the scam message" goto:scamoffpl
echo.
echo Falsch!
@ping 127.0.0.1 -n 2 -w 1000> nul
goto :options
:scamoffpl
start %NUSLmin%/wait support\wget -t 3 "http://downloads.consolearea.square7.de/nusl/files/scam.txt"
move scam.txt Support
goto :options
:Scamon
CLS
echo NUSL %CURRENTVERSION%
echo by the WiiDatabase Team
echo.
echo.
color 1F
::---------------------------------------------------------
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] THIS SOFTWARE MUST NOT BE SOLD
@ping 127.0.0.1 -n 2 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 NEITHER ALONE NOR AS PART OF A BUNDLE.
@ping 127.0.0.1 -n 2 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 IF YOU PAID FOR THIS SOFTWARE OR RECEIVED
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 IT AS PART OF A BUNDLE FOLLOWING PAYMENT,
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 YOU HAVE BEEN SCAMMED
@ping 127.0.0.1 -n 2 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 AND SHOULD DEMAND YOUR MONEY BACK IMMEDIATLEY
echo.
@ping 127.0.0.1 -n 2 -w 1000> nul
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green] For furhter details see
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Cyan] http://hbc.hackmii.com/scam
@ping 127.0.0.1 -n 2 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] USE THIS AT YOUR OWN RISK!
echo.
@ping 127.0.0.1 -n 2 -w 1000> nul
Support\sfk echo -spat \x20 THIS PACKAGE COMES WITH ABSOLUTELY NO WARRANTY, NEITHER STATED NOR IMPLIED.
Support\sfk echo -spat \x20 NO ONE BUT YOURSELF IS TO BE HELD RESPONSIBLE FOR ANY DAMAGE THIS MAY CAUSE
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 TO YOUR NINTENDO WII CONSOLE!
@ping 127.0.0.1 -n 2 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Red] YOU CAN REDISTRIBUTE THIS SOFTWARE
@ping 127.0.0.1 -n 2 -w 1000> nul
echo.
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Green] BUT IT'S COPYRIGHTED TO
Support\sfk echo -spat \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 \x20 [Cyan] http://wiidatabase.de.tl
@ping 127.0.0.1 -n 2 -w 1000> nul
@echo.
echo.
@ping 127.0.0.1 -n 2 -w 1000> nul
del Support\Scam.txt
goto :options | Brawl345/GoogleCodeExport | nusl/v0.1 beta 4/NUSL v0.1b4.bat | bat | gpl-3.0 | 48,461 |
@ECHO OFF
SETLOCAL
SET PYTHONPATH="../..:%PYTHONPATH%"
C:\python27\python.exe -m sllurp.csv_recorder %*
ENDLOCAL
| ransford/sllurp | bin/windows/csv_recorder.bat | bat | gpl-3.0 | 115 |
@echo off
dcc32 -cc shuffle.dpr
shuffle.exe
dcc32 -cc ..\ones_rs.dpr
copy ..\ones_rs.exe ones_rs.exe >nul 2>&1
call make_answers.bat
| toksaitov/most | samples/problems/testlib/ones/tests/make.bat | bat | gpl-3.0 | 136 |
@echo off
echo 'Building package' %APPVEYOR_BUILD_VERSION%
msbuild NoOverlay.csproj -p:SolutionDir=%cd%\ ^
-p:Configuration=Release ^
-t:rebuild ^
-p:ApplicationVersion=%APPVEYOR_BUILD_VERSION% ^
-v:minimal
cd bin\Release
7z a release.zip NoOverlay.* iRacingDirector.Plugin.Support.*
appveyor PushArtifact release.zip -FileName "release.zip" -DeploymentName deploy-release
cd ..\..
| vipoo/iRacingReplayOverlay.net | plugins/NoOverlay/tools/package.cmd | bat | gpl-3.0 | 659 |
@echo OFF
REM batch file for running the Calibre2Opds program in CLI mode.
REM
REM The checks for Java have been adapted from those used to
REM start up the IzPack package builder and then extended.
REM Hopefully this means that calibre2opds Java may run on
REM some of those systems that do not have Java on the search
REM path but do have the one of the following conditions met:
REM - JAVA_HOME environment variable set
REM - have installed to default location.
REM - have the expected registry keys set
REM The following optional parameter options are available
REM --enableassertions Start the JAVA VM with assertions enabled for testing
REM --hidden Hide the command window while running
REM profilename Name of the profile to use. If omitted
REM then the last one used is assumed.
SETLOCAL
set _C2O=OpdsOutput-3.6-SNAPSHOT.jar
cls
echo Calibre2opds startup
echo ====================
echo [INFO] Command line options: %*
echo [INFO] JAVA VM Options: %_C2O_JAVAOPT%
REM The following allows for the special case of running in test mode
set _ASSERTIONS=
if not "%1"=="--enableassertions" goto noassertions
echo [INFO] Assertions enabled in Java VM
shift
set _ASSERTIONS=--enableassertions
:noassertions
REM The following is used to determine free RAM
REM (we want to use this as a basis for giving the JVM
REM more RAM on systems with plenty free).
for /f "skip=1" %%p in ('wmic os get freephysicalmemory') do (
set m=%%p
goto freemem_done
)
:freemem_done
echo [INFO} Free RAM: %m%
REM We set JAVA VM stack limits explicitly here to get consistency across systems
REM
REM -Xms<value> define starting size
REM -Xmx<value> defines maximum size
REM -Xss<value> defines stack size
REM
REM It is possible that for very large libraries this may not be enough - we will have to see.
REM We try to look at the free RAM and try and derive values dynamically.
if %m% LSS 2000 set _C2O_JAVAOPT= -Xms128m -Xmx512m
if %m% GTR 2000 set _C2O_JAVAOPT= -Xms192m -Xmx768m
if %m% GTR 4000 set _C2O_JAVAOPT= -Xms256m -Xmx1024m
set _CD=%cd%
echo [INFO]] Current Directory is %cd%
set _JAVAPROG=JAVA.EXE
echo '
echo [INFO] Trying to locate Java on this system
echo [INFO] ====================================
REM See if JAVA_HOME specifies location of Java (prefered method)
if "%JAVA_HOME%" == "" goto no_javahome
if not exist "%JAVA_HOME%\bin\%_JAVAPROG%" goto no_javahome
set _JAVACMD=%JAVA_HOME%\bin\%_JAVAPROG%
echo [INFO] Java found via JAVA_HOME evironment variable [%JAVA_HOME%]
goto c2o_run
:no_javahome
echo [INFO] Java location not found via JAVA_HOME environment variable
REM Check default install locations
REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
if not exist "%ProgramFiles%\Java\jre6\bin\%_JAVAPROG%" goto no_jre6
set _JAVACMD=%ProgramFiles%\Java\jre6\bin\%_JAVAPROG%
echo [INFO] Java found via default JRE6 location
echo [INFO] Java located at %ProgramFiles%\Java\jre6
goto c2o_run
:no_jre6
echo [INFO] Java not found in default JRE6 location [%ProgramFiles%\Java\jre6]
if not exist "%ProgramFiles%\Java\jre7\bin\%_JAVAPROG%" goto no_jre7
set _JAVACMD=%ProgramFiles%\Java\jre7\bin\%_JAVAPROG%
echo [INFO] Java found at default JRE7 location [%ProgramFiles%\Java\jre7]
goto c2o_run
:no_jre7
echo [INFO] Java not found in default JRE7 location [%ProgramFiles%\Java\jre7]
if not exist "%ProgramFiles% (x86)\Java\jre6\bin\%_JAVAPROG%" goto no_jre6_64
set _JAVACMD=%ProgramFiles% (x86)\Java\jre6\bin\%_JAVAPROG%
echo [INFO] Java found at default 32-bit Java on 64-bit Windows JRE6 location [%ProgramFiles% ^(x86^)\Java\jre6]
goto c2o_run
:no_jre6_64
echo [INFO] Java not found in default 32-bit Java on 64-bit Windows JRE6 location [%ProgramFiles% (x86)\Java\jre6]
if not exist "%ProgramFiles% (x86)\Java\jre7\bin\%_JAVAPROG%" goto no_jre7_64
set _JAVACMD=%ProgramFiles% (x86)\Java\jre7\bin\%_JAVAPROG%
echo [INFO] Java found at default 32-bit Java on 64-bit Windows JRE7 location [%ProgramFiles% ^(x86^)\Java\jre7]
goto c2o_run
:no_jre7_64
echo [INFO] Java not found in default 32-bit Java on 64-bit Windows JRE7 location [%ProgramFiles% (x86)\Java\jre7]
REM This next section is about trying to find Java home via the registry
REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
set _MYKEY=HKLM\Software\JavaSoft\Java RunTime Environment
for /F "tokens=3" %%A IN ('REG.EXE QUERY "%_MYKEY%" /s ^| FIND "CurrentVersion"') DO set _MYVAR1=%%A
if "%_MYVAR1%" == "" GOTO no_jrereg
echo [INFO] Java found via registry JRE key %_MYKEY%
goto get_javahome
:no_jrereg
echo [INFO] Java not found at reg key %_MYKEY%
set _MYKEY=HKLM\Software\JavaSoft\Java Development Kit
for /F "tokens=3" %%A IN ('REG.EXE QUERY "%_MYKEY%" /s ^| FIND "CurrentVersion"') DO set _MYVAR1=%%A
if "%_MYVAR1%" == "" GOTO no_jdkreg
echo [INFO] Java found via registry JDK key %_MYKEY%
goto get_javahome
:no_jdkreg
echo [INFO] Java not found at reg key %_MYKEY%
set _MYKEY=HKLM\Software\Wow6432Node\JavaSoft\Java RunTime Environment
for /F "tokens=3" %%A IN ('REG.EXE QUERY "%_MYKEY%" /s ^| FIND "CurrentVersion"') DO set _MYVAR1=%%A
if "%_MYVAR1%" == "" goto no_jrewow
echo [INFO] Java found via registry JRE key for 32 bit Java on 64 bit system
goto get_javahome
:no_jrewow
echo [INFO] Java not found at reg key %_MYKEY%
set _MYKEY=HKLM\Software\Wow6432Node\JavaSoft\Java Development Kit
for /F "tokens=3" %%A IN ('REG.EXE QUERY "%_MYKEY%" /s ^| FIND "CurrentVersion"') DO set _MYVAR1=%%A
if "%_MYVAR1%" == "" GOTO no_jdkwow
echo [INFO] Java found via registry JDK key for 32 bit Java on 64 bit system
GOTO get_javahome
:no_jdkwow
echo [INFO] Java not found at reg key %_MYKEY%
echo [INFO] Unable to find Java Registry entry
goto java_notfound
REM We apear to have found a location for Java. Check that it is valid
REM -------------------------------------------------------------------
:get_javahome
FOR /F "tokens=3*" %%A IN ('REG.EXE QUERY "%_MYKEY%\%_MYVAR1%" /s ^| FIND "JavaHome"') DO set _MYVAR2=%%A %%B
if not "%_MYVAR2%" == "" goto ok_regjavahome
echo [INFO] Failed to find JavaHome registry key
goto java_notfound
:ok_regjavahome
echo [INFO] Found JavaHome registry key
if exist "%_MYVAR2%\bin\%_JAVAPROG%" goto ok_javaprog
echo [INFO] Failed to find Java at location indicated by registry
goto java_notfound
:ok_javaprog
echo [INFO] Found "%_MYVAR2%\bin\%_JAVAPROG%"
set _JAVACMD=%_MYVAR2%\bin\%_JAVAPROG%
echo [INFO] Java located at %_MYVAR2%
goto c2o_run
:java_notfound
echo '
echo ----------------------------------------------------------------------------
echo WARNING
echo '
echo Unable to determine where the %JAVAPROG% program (which is part of Java) has
echo been installed on your system. Java does not appear to have been installed
echo in any of the default locations or using the standard registry keys.
echo '
echo In this case, the recommended way to proceed is to specify the location of Java
echo by setting the JAVA_HOME environment variable. Normally the value of JAVA_HOME
echo would be set to something like:
echo JAVA_HOME=C:\Program Files\Java\jre6
echo although it could well vary on your system (particularily if you are running
echo Windows 7 or if you have installed the Java Development Kit. Within that
echo folder there should be a folder called 'bin' and the %_JAVAPROG% program will
echo be located inside that.
echo '
echo If you press ENTER then calibre2opds will hope that the %_JAVAPROG% program can
echo found on the system search path and will continue on that basis.
echo ----------------------------------------------------------------------------
echo '
pause
set _JAVACMD=%_JAVAPROG%
:c2o_run
if exist uninstaller.jar (
REM This bit is to work around what seems to be a bug in IzPack which seems to
REM set up the uninstall shortcut to use run.cmd regardless of te specification!
cd ..
"%_JAVACMD%" -jar uninstaller/uninstaller.jar %*
goto end
)
REM The next few lines are to help with running in Portable mode with minimal user setup required
if NOT "%CALIBRE2OPDS_CONFIG%" == "" goto c2o_start
if NOT exist Calibre2OpdsConfig goto c2o_start
set CALIBRE2OPDS_CONFIG=%cd%/Calibre2OpdsConfig
:c2o_start
echo '
echo "-----------------------------------"
echo " Calibre2Opds STARTING (batch mode)"
echo "-----------------------------------"
echo '
pushd "%TEMP%"
echo [INFO] Current directory is %cd%
echo [INFO] Attempting to start Calibre2opds with the following command:
IF "%1" == "--hidden" goto hidden
echo [INFO] "%_JAVACMD%" %_C2O_JAVAOPT% -cp "%_CD%\*" -jar "%_CD%\%_C2O%" Cli %1
"%_JAVACMD%" %_C2O_JAVAOPT% -cp "%_CD%\*" Cli %1
if not "%ERRORLEVEL%"=="0" goto check_result
echo '
echo "-----------------------"
echo " Calibre2Opds FINISHED "
echo "-----------------------"
echo '
goto end
:hidden
shift
echo [INFO] "START ""calibre2opds"" "/MIN" "%_JAVACMD%" %_C2O_JAVAOPT% -cp "%_CD%\*" -jar "%_cd%\%_C2O%" Cli %1
START "Calibre2Opds" /MIN "%_JAVACMD%" %_C2O_JAVAOPT% -cp "%_CD%\*" Cli %1
:check_result
if "%ERRORLEVEL%"=="0" goto end
echo '
echo [INFO] ---------------------------------
echo [INFO] ERROR trying to run Calibre2opds
echo [INFO] Exit Code: %ERRORLEVEL%
echo [INFO] ---------------------------------
echo '
:end
popd
echo [INFO]] Current Directory reset to %cd%
ENDLOCAL
| calibre2opds/calibre2opds | script/run.cmd | bat | gpl-3.0 | 9,562 |
@echo off
set curr_dir=%~dp0
echo "hello, this a test, output is: %1" > %curr_dir%%2
| yangxingya/pkgtools | bin/debug/test.bat | bat | gpl-3.0 | 87 |
@echo off
REM This Framework-dependent deployment (FDD) relies on an installed .NET Core on the target system
REM But you can also create a Self-contained deployment (SCD). See:
REM https://docs.microsoft.com/en-us/dotnet/core/deploying/index#portable-applications
dotnet SymSpell.CommandLine.dll
pause
| wolfgarbe/symspell | SymSpell.CommandLine/bin/Release/netcoreapp2.0/help.bat | bat | lgpl-3.0 | 304 |
@echo off
for /l %%i in (1, 1, 9) do (
echo "Importing earthquakes with magnitude %%i to chp03.earthquakes PostGIS table..."
ogr2ogr -append -f PostgreSQL -nln chp03.earthquakes PG:"dbname='postgis_cookbook' user='me' password='mypassword'" 2012_Earthquakes_ALL.kml -sql "SELECT name, description, CAST(%%i AS integer) AS magnitude FROM 'Magnitude %%i'"
) | smagic39/PostGis-Cookbook-Code | Chapter 3/import_eq.bat | bat | unlicense | 363 |
@ECHO OFF
SETLOCAL
call setenv
set BACKUP_DIR_TMP=%BACKUP_DIR%\bk_e
del %BACKUP_DIR_TMP%\*.dmp | tee -a %BATCHLOGFILE%
echo.
echo ********** ¿ªÊ¼ÅúÁ¿ºóÍêÈ«±¸·Ý ********** | tee -a %BATCHLOGFILE%
call job_invoker.bat BCB8001 L %BATCHROOTPATH%\db > %BATCHROOTPATH%\tmp\BCB8001
if ERRORLEVEL 1 goto errmsg
for /F "tokens=1,2 delims==" %%i in (%BATCHROOTPATH%\db\SYSDATE.txt) do set SYSDATE=%%j
echo ±¸·Ý²Ù×÷ÈÕÆÚ:%SYSDATE% | tee -a %BATCHLOGFILE%
exp cbs/cbs@orcl file=%BACKUP_DIR_TMP%\db_b.dmp log=%BACKUP_DIR_TMP%\bk_e.log direct=y buffer=4096000 2>> %BATCHLOGFILE%
if ERRORLEVEL 1 goto errmsg
echo.
echo **********±¸·Ýbk_b bk_e bkrpt********* | tee -a %BATCHLOGFILE%
mkdir %BACKUP_DIR%\%SYSDATE% >> %BATCHLOGFILE%
mkdir %BACKUP_DIR%\%SYSDATE%\bk_b >> %BATCHLOGFILE%
mkdir %BACKUP_DIR%\%SYSDATE%\bk_e >> %BATCHLOGFILE%
mkdir %BACKUP_DIR%\%SYSDATE%\bkrpt >> %BATCHLOGFILE%
copy %BACKUP_DIR%\bk_b\*.* %BACKUP_DIR%\%SYSDATE%\bk_b >> %BATCHLOGFILE%
copy %BACKUP_DIR%\bk_e\*.* %BACKUP_DIR%\%SYSDATE%\bk_e >> %BATCHLOGFILE%
xcopy /E %BATCHROOTPATH%\report\%SYSDATE%\* %BACKUP_DIR%\%SYSDATE%\bkrpt >> %BATCHLOGFILE%
copy %BATCHROOTPATH%\tmp\* %BACKUP_DIR%\%SYSDATE%\bkrpt >> %BATCHLOGFILE%
copy %BATCHROOTPATH%\log\* %BACKUP_DIR%\%SYSDATE%\bkrpt
rem copy %BATCHROOTPATH%\print\* %BACKUP_DIR%\%SYSDATE%\bkrpt >> %BATCHLOGFILE%
rem copy %BATCHROOTPATH%\print\rpfx2005 %BACKUP_DIR%\%SYSDATE%\bkrpt\. >> %BATCHLOGFILE%
echo.
echo ********** ÅúÁ¿ºóÍêÈ«±¸·ÝÍê³É!********** | tee -a %BATCHLOGFILE%
echo.
goto end
:errmsg
echo.
echo.
echo ********** ÅúÁ¿ºóÍêÈ«±¸·Ý´íÎó!********** | tee -a %BATCHLOGFILE%
echo ÈÕÆÚ:%date:~0,4%-%date:~5,2%-%date:~8,2% ʱ¼ä:%time:~0,2%:%time:~3,2%:%time:~6,2% | tee -a %BATCHLOGFILE%
choice /M "** ºöÂÔ´íÎó²¢¼ÌÐøÂð?"
if ERRORLEVEL 2 goto errmsg
echo ** ºöÂÔ´íÎ󣬼ÌÐø´¦Àí......
echo.
echo.
:end
ENDLOCAL | rongshang/fbi-cbs2 | batch/main/resources/script/bk_e.bat | bat | unlicense | 1,980 |
REM Install .NET Core (https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script)
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -useb 'https://dot.net/v1/dotnet-install.ps1'))) -Channel Current"
SET PATH=%LOCALAPPDATA%\Microsoft\dotnet;%PATH%
dotnet restore Akkling.fsproj
dotnet restore Akkling.TestKit.fsproj
dotnet restore Akkling.Streams.fsproj
dotnet restore Akkling.Streams.TestKit.fsproj
dotnet restore Akkling.Persistence.fsproj
dotnet restore Akkling.DistributedData.fsproj
dotnet restore Akkling.Cluster.Sharding.fsproj
dotnet restore .\tests\Akkling.Tests.fsproj
dotnet fake %* | Horusiath/Akkling | fake.cmd | bat | apache-2.0 | 664 |
@rd /s /q ..\all\app
@mkdir ..\all\app\1.0.1
@copy dist\app.js ..\all\app\1.0.1
@echo
@echo " deploy to all\app\1.0.1"
@echo
| inspireso/webapp | src/main/webapp/static/app/deploy.bat | bat | apache-2.0 | 133 |
SET _=%~dp0
xcopy "%_%..\output\*.js" "%_%..\..\..\Demo.MVC\resources\js" /Y
xcopy "%_%..\output\*.js" "%_%..\..\..\Demo.WebForms\resources\js" /Y | modulexcite/Demos-1 | Combination_Samples/MVC_and_WebForms/Demo/bridge/build/deploy.bat | bat | apache-2.0 | 146 |
@echo off
cls
setlocal ENABLEEXTENSIONS
set KEY_NAME="HKLM\SOFTWARE\JavaSoft\Java Runtime Environment"
set VALUE_NAME=CurrentVersion
::
:: get the current version
::
FOR /F "usebackq skip=2 tokens=3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO (
set ValueValue=%%A
)
if not defined ValueValue (
@echo No registry entry found for Java.
goto end
)
set ok=false
if "%ValueValue%" == "1.6" set ok=true
if "%ValueValue%" == "1.7" set ok=true
if "%ok%" == "false" (
@echo Unsupported java version %ValueValue%.
goto end
)
set JAVA_CURRENT="HKLM\SOFTWARE\JavaSoft\Java Runtime Environment\%ValueValue%"
set JAVA_HOME=JavaHome
::
:: get the javahome
::
FOR /F "usebackq skip=2 tokens=3,4" %%A IN (`REG QUERY %JAVA_CURRENT% /v %JAVA_HOME% 2^>nul`) DO (
set JAVA_PATH=%%A %%B
)
echo %JAVA_PATH%
for %%A in ("%~dp0..") do set MATOS_HOME=%%~fA
echo %MATOS_HOME%
set MATOS_JAR=matosweb.jar
set EXEC=%MATOS_HOME%\lib\%MATOS_JAR%
"%JAVA_PATH%\bin\java.exe" -cp "%MATOS_HOME%\lib\*;" -Xmx1500m -Dmatos.lib="%MATOS_HOME%" -Dmatos.temp="%TEMP%" com.orange.matos.CoreCLI %*
| Orange-OpenSource/matos-tool | matos/src/main/scripts/matos.bat | bat | apache-2.0 | 1,107 |
title MikeX
java -cp mikex.jar:log4j-1.2.16.jar:mina-core-1.1.7.jar:quickfixj-all-1.5.1.jar:slf4j-api-1.6.2.jar:slf4j-log4j12-1.6.2.jar -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8888 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false mikex.Startup
| qzmeng/mikex | mikex.bat | bat | apache-2.0 | 315 |
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
::
@ECHO OFF
IF "%PROFILE%" == "MSVC2010" (
CALL "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" %PLATFORM%
) ELSE IF "%PROFILE%" == "MSVC2012" (
CALL "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" %PLATFORM%
) ELSE IF "%PROFILE%" == "MSVC2013" (
CALL "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
) ELSE IF "%PROFILE%" == "MSVC2015" (
CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
) ELSE IF "%PROFILE%" == "MSVC2017" (
CALL :SETUPNEWERMSVC || EXIT /B
) ELSE IF "%PROFILE%" == "MINGW" (
REM Supported, nothing special to do here.
) ELSE IF "%PROFILE%" == "CYGWIN" (
REM Supported, nothing special to do here.
) ELSE (
ECHO Unsupported PROFILE=%PROFILE% or PLATFORM=%PLATFORM%
EXIT /B 1
)
CALL cl_setcompiler.bat || EXIT /B
CALL cl_setgenerator.bat || EXIT /B
SET APPVEYOR_SCRIPTS=%APPVEYOR_BUILD_FOLDER%\build\appveyor
SET BUILDDIR=%APPVEYOR_BUILD_FOLDER%\..\build\%PROFILE%\%PLATFORM%
SET INSTDIR=%APPVEYOR_BUILD_FOLDER%\..\build\%PROFILE%\%PLATFORM%
SET SRCDIR=%APPVEYOR_BUILD_FOLDER%
:: PLATFORM is x64 or x86
:: NORM_PLATFORM is 64 or 32
SET NORM_PLATFORM=%PLATFORM:~-2,2%
IF "%NORM_PLATFORM%" == "86" (SET NORM_PLATFORM=32)
IF "%PROFILE:~0,4%" == "MSVC" (
:: FindBoost needs forward slashes so cmake doesn't see something as an escaped character
SET BOOST_ROOT=C:/Libraries/boost_%BOOST_VERSION:.=_%
SET BOOST_LIBRARYDIR=!BOOST_ROOT!/lib%NORM_PLATFORM%-msvc-%COMPILER:~-3,2%.%COMPILER:~-1,1%
SET OPENSSL_ROOT=C:\OpenSSL-Win%NORM_PLATFORM%
SET WIN3P=%APPVEYOR_BUILD_FOLDER%\thirdparty
:: MSVC2010 doesn't "do" std::thread
IF "%COMPILER%" == "vc100" (
SET THREADMODEL=BOOST
) ELSE (
SET THREADMODEL=STD
)
IF "%PYTHON_VERSION%" == "" (
SET WITH_PYTHON=OFF
) ELSE (
SET WITH_PYTHON=ON
IF /i "%PLATFORM%" == "x64" SET PTEXT=-x64
SET PATH=C:\Python%PYTHON_VERSION:.=%!PTEXT!\scripts;C:\Python%PYTHON_VERSION:.=%!PTEXT!;!PATH!
)
IF "%CONFIGURATION%" == "Debug" (SET ZLIB_LIB_SUFFIX=d)
IF NOT "%QT_VERSION%" == "" (
IF /i "%PLATFORM%" == "x64" SET QTEXT=_64
SET PATH=C:\Qt\%QT_VERSION%\%PROFILE%!QTEXT!\bin;!PATH!
)
) ELSE IF "%PROFILE:~0,4%" == "MING" (
:: PLATFORM = x86 means MINGWPLAT i686
:: PLATFORM = x64 means MINGWPLAT x86_64
SET MINGWPLAT=x86_64
IF "%PLATFORM%" == "x86" (SET MINGWPLAT=i686)
SET BASH=C:\msys64\usr\bin\bash.exe
!BASH! -lc "sed -i '/export PATH=\/mingw32\/bin/d' ~/.bash_profile && sed -i '/export PATH=\/mingw64\/bin/d' ~/.bash_profile && echo 'export PATH=/mingw%NORM_PLATFORM%/bin:$PATH' >> ~/.bash_profile" || EXIT /B
SET BUILDDIR=%BUILDDIR:\=/%
SET BUILDDIR=/c!BUILDDIR:~2!
SET INSTDIR=%INSTDIR:\=/%
SET INSTDIR=/c!INSTDIR:~2!
SET SRCDIR=%SRCDIR:\=/%
SET SRCDIR=/c!SRCDIR:~2!
) ELSE IF "%PROFILE:~0,4%" == "CYGW" (
SET CYGWINROOT=C:\cygwin
IF "%PLATFORM%" == "x64" (SET CYGWINROOT=!CYGWINROOT!64)
SET BASH=!CYGWINROOT!\bin\bash.exe
SET SETUP=!CYGWINROOT!\setup-x86
IF "%PLATFORM%" == "x64" (SET SETUP=!SETUP!_64)
SET SETUP=!SETUP!.exe
SET BUILDDIR=%BUILDDIR:\=/%
SET BUILDDIR=/cygdrive/c!BUILDDIR:~2!
SET INSTDIR=%INSTDIR:\=/%
SET INSTDIR_CYG=/cygdrive/c!INSTDIR:~2!
SET SRCDIR=%SRCDIR:\=/%
SET SRCDIR=/cygdrive/c!SRCDIR:~2!
)
GOTO :EOF
:SETUPNEWERMSVC
FOR /F "USEBACKQ TOKENS=*" %%i IN (`call "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -version "[15.0,16.0)" -property installationPath`) DO (
IF "%MSVCROOT%" == "" (SET MSVCROOT=%%i)
)
SET MSVCPLAT=x86
IF "%PLATFORM%" == "x64" (SET MSVCPLAT=amd64)
SET CURRENTDIR=%CD%
CALL "!MSVCROOT!\Common7\Tools\VsDevCmd.bat" -arch=!MSVCPLAT! || EXIT /B
CD %CURRENTDIR%
EXIT /B
:EOF
| glycerine/goq | vendor/git.apache.org/thrift.git/build/appveyor/cl_setenv.bat | bat | bsd-2-clause | 4,341 |
ck rm local:experiment:SGEMM_NT-*
| dividiti/gemmbench | script/SGEMM_NT/_clean_experiment_entries.bat | bat | bsd-3-clause | 34 |
python osclisten.py [email protected]
| nosuchtim/MultiMultiTouchTouch | src/oscutil/wook.bat | bat | mit | 35 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Invenio-Logging.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Invenio-Logging.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| inveniosoftware/invenio-logging | docs/make.bat | bat | mit | 6,999 |
sqlplus suministrosqa/suministrosqa@AWORCL3100 | AlanGuerraQuispe/SisAtuxPerfumeria | db-utils/sqlplus-orcl3.bat | bat | gpl-2.0 | 46 |
@echo off
setlocal
SET TWOMGFX="..\..\..\..\Tools\2MGFX\bin\Windows\AnyCPU\Release\2mgfx.exe"
@for /f %%f IN ('dir /b *.fx') do (
call %TWOMGFX% %%~nf.fx %%~nf.ogl.mgfxo
call %TWOMGFX% %%~nf.fx %%~nf.dx11.mgfxo /Profile:DirectX_11
)
endlocal
| Blucky87/Otiose2D | src/libs/MonoGame/MonoGame.Framework/Graphics/Effect/Resources/RebuildMGFX.bat | bat | gpl-3.0 | 252 |
@pushd c:\pip\4dos\fig\
@figlet %&
@popd
| pip/Octology | dox/Jobz/7Studios/CygPip/bin/figlet.bat | bat | gpl-3.0 | 44 |
@REM Build Documentation for every debug xll
@for %%1 in (Debug\*.xll) do call "%XLW%\xlw\build\sandcastle\BuildChmHelp.bat" "%%~n1" codeblocks-gcc
| red2901/sandbox | xlw/xlw-5.0.2f0/xlw/examples/Typeregister/codeblocks-gcc/BuildHelp.bat | bat | mit | 149 |
call mvn -Dappname=vosaocms package -o | vhhieu/vosao | web/make.bat | bat | lgpl-2.1 | 38 |
@ECHO off
ECHO .bat running!
node app.js
PAUSE
| mo-group/node-exe | app.bat | bat | mit | 47 |
"%UNITY_PATH%Unity.exe" -batchmode -projectPath %~dp0..\Source\Unity -exportPackage Assets/FingerGesturesExt %~dp0..\Release\Slash.Unity.FingerGesturesExt.unitypackage -quit | npruehs/slash-framework | Source/Slash.Unity.FingerGestures/Tools/MAKE.bat | bat | mit | 173 |
@echo off
::::::::::::::::::::::::::::::::::::
:: Set JAVA_HOME or JRE_HOME ::
::::::::::::::::::::::::::::::::::::
title %~0
IF EXIST tomcat\logs\catalina.pid (
del /F/Q tomcat\logs\catalina.pid
)
set TASKCMD=TASKLIST /V
set FINDCMD=FIND /I
FOR /F "tokens=2 delims= " %%A IN ('%TASKCMD% ^| %FINDCMD% "%~0"') DO SET MyPID=%%A
set KeyName=%JDKKeyName64%
goto JDKRUN
:JDKRUN
echo.
echo [WAIL]: Using JDK
set "CURRENT_DIR=%cd%"
:Use WAIL's Java7
set "JAVA_HOME="%CURRENT_DIR%\bundledApps\Java\Windows\jdk1.7.0_80\"
set "CATALINA_HOME=%CURRENT_DIR%\bundledApps\tomcat"
echo.
echo [WAIL]: Seems fine!
echo [WAIL]: Set JAVA_HOME : %JAVA_HOME%
echo [WAIL]: Set CATALINA_HOME : %CATALINA_HOME%
echo.
if %ERRORLEVEL% == 0 (
echo %MyPID% > tomcat\logs\catalina.pid
)
"%CATALINA_HOME%\bin\catalina.bat" run
goto END
:JRERUN
echo.
echo [WAIL]: Using JRE
set "CURRENT_DIR=%cd%"
set "CATALINA_HOME=%CURRENT_DIR%\bundledApps\tomcat"
set Cmd=reg query "%KeyName%" /s
for /f "tokens=2*" %%i in ('%Cmd% ^| find "JavaHome"') do set JRE_HOME=%%j
echo.
echo [WAIL]: Seems fine!
echo [WAIL]: Set JRE_HOME : %JRE_HOME%
echo [WAIL]: Set CATALINA_HOME : %CATALINA_HOME%
echo.
if %ERRORLEVEL% == 0 (
echo %MyPID% > tomcat\logs\catalina.pid
)
"%CATALINA_HOME%\bin\catalina.bat" run
goto END
:ENDERROR
exit 1
:END
echo done.
pause
| machawk1/wail | support/catalina_start.bat | bat | mit | 1,400 |
@echo off
REM @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
REM
REM Author : [email protected]
REM
REM local Connection Properties
REM ( You can override Global properties defined in qc.connection.properties here )
REM
REM Do not leave spaces between param=value
REM Do not use " or ' around variables
REM
REM
REM Behavior Modification Properties
REM ---------------------------------
REM
REM 1) In order to Create missing Test-Set Folders, Test-Sets and Test-Instances set
REM system property "create_if_not_found" to "true" in the ARGS
REM
REM Example : set ARGS="-Dtd.url=%td_url% ....... -Dcreate_if_not_found=true"
REM
REM 2) In order to, by default, update First test Instance if multiple testInstances
REM of test found in Test-Set set system property "use_first_instance" to "true"
REM in the ARGS
REM
REM Example : set ARGS="-Dtd.url=%td_url% ....... -Duse_first_instance=true"
REM
REM @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
setlocal
set td_url=
set td_domain=
set td_project=
set td_user=
set td_password=
IF EXIST %~dp0\lib\qc.connection.properties ( goto Run ) else ( goto Validate )
:Validate
if [%td_domain%]==[] ( echo "td_domain" NOT SET. Set the Parameter and Retry && goto end )
if [%td_project%]==[] ( echo "td_project" NOT SET. Set the Parameter and Retry && goto end )
if [%td_user%]==[] ( echo "td_user" NOT SET. Set the Parameter and Retry && goto end )
if [%td_password%]==[] ( echo "td_password" NOT SET. Set the Parameter and Retry && goto end )
:Run
set ARGS="-Dtd.url=%td_url% -Dtd.domain=%td_domain% -Dtd.project=%td_project% -Dtd.user=%td_user% -Dtd.password=%td_password%"
java %ARGS:"=% -Duse_first_instance=true -jar %~dp0lib\qc-notifier-batchclient-*.jar %*
:end
endlocal | kristux81/QcNotifier | batchclient/src/main/distribution/tdBatchClient.bat | bat | mit | 1,869 |
@echo off
chcp 65001
rem OneView Appliance hostname or IP address
set HOST=oneview
rem OneView Appliance username
set USER=Administrator
rem OneView Appliance password
set PASS=PASSWORD
echo ================================================================
echo Removing Profiles
echo ================================================================
python del-profile.py -a %HOST% -u %USER% -p %PASS% -d -f
echo.
echo ================================================================
echo Removing Volumes
echo ================================================================
python del-volume.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Volume Templates
echo ================================================================
python del-volume-template.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Storage Pools
echo ================================================================
python del-storage-pool.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Storage Systems
echo ================================================================
python del-storage-system.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Enclosure
echo ================================================================
python del-enclosure.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Standalone Servers
echo ================================================================
python del-server.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Enclosure Groups
echo ================================================================
python del-enclosure-group.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Logical Interconnect Groups
echo ================================================================
python del-logical-interconnect-groups.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Network Sets
echo ================================================================
python del-network-set.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Networks
echo ================================================================
python del-network.py -a %HOST% -u %USER% -p %PASS% -d
echo.
echo ================================================================
echo Removing Power Devices
echo ================================================================
python del-powerdevices.py -a %HOST% -u %USER% -p %PASS% -d
| miqui/python-hpOneView | examples/scripts/clean.bat | bat | mit | 3,326 |
cmd_drivers/usb/storage/ums-jumpshot.o := /home/algesat/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/usb/storage/ums-jumpshot.o drivers/usb/storage/jumpshot.o
| Algesat/BladeApex2 | drivers/usb/storage/.ums-jumpshot.o.cmd | bat | gpl-2.0 | 165 |
.emulationstation\systems\retroarch\retroarch.exe -L .emulationstation\systems\retroarch\cores\dinothawr_libretro.dll .emulationstation\roms\ports\dinothawr\dinothawr.game | Omnija/Portable-Gaming-Environment | .emulationstation/roms/ports/dinothawr.bat | bat | gpl-2.0 | 171 |
cmd_drivers/usb/storage/usb-storage.o := /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/usb/storage/usb-storage.o drivers/usb/storage/scsiglue.o drivers/usb/storage/protocol.o drivers/usb/storage/transport.o drivers/usb/storage/usb.o drivers/usb/storage/initializers.o drivers/usb/storage/sierra_ms.o drivers/usb/storage/option_ms.o
| selva-simple/Galaxy-R-Kernel | drivers/usb/storage/.usb-storage.o.cmd | bat | gpl-2.0 | 385 |
cur.execute('SELECT SignedOut FROM Books WHERE ISBN = ?', isbn)
signedOut = cur.fetchone()[0]
cur.execute('''UPDATE Books SET SignedOut = ?
WHERE ISBN = ?''', signedOut + 1, isbn)
cur.commit()
| simontakite/sysadmin | pythonscripts/practicalprogramming/db/db_transaction_1.cmd | bat | gpl-2.0 | 209 |
cmd_drivers/mfd/built-in.o := rm -f drivers/mfd/built-in.o; /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ar rcs drivers/mfd/built-in.o
| spacecaker/Stock_spacecaker_kernel | drivers/mfd/.built-in.o.cmd | bat | gpl-2.0 | 176 |
bundle exec jekyll server -H 0.0.0.0 -p 4000 --config _config.yml,_local_config.yml
http://port-4000.dev-site-tasnar573703.codeanyapp.com/
| thomas-asnar/thomas-asnar.github.io | cmd/codeanywhere.cmd | bat | gpl-2.0 | 139 |
cmd_sound/soc/mid-x86/built-in.o := rm -f sound/soc/mid-x86/built-in.o; arm-linux-gnueabi-ar rcsD sound/soc/mid-x86/built-in.o
| jpsminix/minix5 | sound/soc/mid-x86/.built-in.o.cmd | bat | gpl-2.0 | 128 |
@%~dp0\busybox.exe sum %*
| witwall/busybox-w32 | sum.bat | bat | gpl-2.0 | 26 |
cmd_net/bluetooth/bnep/bnep.o := /home/leonardo/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-eabi-ld -EL -r -o net/bluetooth/bnep/bnep.o net/bluetooth/bnep/core.o net/bluetooth/bnep/sock.o net/bluetooth/bnep/netdev.o
| dalinaum/studyak | net/bluetooth/bnep/.bnep.o.cmd | bat | gpl-2.0 | 220 |
cmd_arch/arm/lib/copy_from_user.o := arm-linux-gnueabi-gcc -Wp,-MD,arch/arm/lib/.copy_from_user.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.6/include -I/root/linux-jps/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk30/include -Iarch/arm/plat-rk/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=7 -march=armv7-a -include asm/unified.h -msoft-float -c -o arch/arm/lib/copy_from_user.o arch/arm/lib/copy_from_user.S
source_arch/arm/lib/copy_from_user.o := arch/arm/lib/copy_from_user.S
deps_arch/arm/lib/copy_from_user.o := \
$(wildcard include/config/thumb2/kernel.h) \
/root/linux-jps/arch/arm/include/asm/unified.h \
$(wildcard include/config/arm/asm/unified.h) \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
/root/linux-jps/arch/arm/include/asm/linkage.h \
/root/linux-jps/arch/arm/include/asm/assembler.h \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/smp.h) \
/root/linux-jps/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/linux-jps/arch/arm/include/asm/hwcap.h \
/root/linux-jps/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
$(wildcard include/config/cpu/use/domains.h) \
arch/arm/lib/copy_template.S \
arch/arm/lib/copy_from_user.o: $(deps_arch/arm/lib/copy_from_user.o)
$(deps_arch/arm/lib/copy_from_user.o):
| jpsminix/minix5 | arch/arm/lib/.copy_from_user.o.cmd | bat | gpl-2.0 | 1,899 |
cmd_kernel/power/poweroff.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,kernel/power/.poweroff.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(poweroff)" -D"KBUILD_MODNAME=KBUILD_STR(poweroff)" -c -o kernel/power/poweroff.o kernel/power/poweroff.c
deps_kernel/power/poweroff.o := \
kernel/power/poweroff.c \
include/linux/kernel.h \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/sysrq.h \
$(wildcard include/config/magic/sysrq.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/pm.h \
$(wildcard include/config/pm/sleep.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/workqueue.h \
$(wildcard include/config/lockdep.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
include/linux/jiffies.h \
include/linux/timex.h \
$(wildcard include/config/no/hz.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/reboot.h \
include/linux/notifier.h \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/emergency-restart.h \
include/asm-generic/emergency-restart.h \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
kernel/power/poweroff.o: $(deps_kernel/power/poweroff.o)
$(deps_kernel/power/poweroff.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | kernel/power/.poweroff.o.cmd | bat | gpl-2.0 | 9,499 |
cmd_kernel/power/tuxonice_core.o := /home/jashaswee/vibex2/X2_ROW_L_OpenSource/arm-linux-androideabi-4.9/bin/arm-linux-androideabi-ld -EL -r -o kernel/power/tuxonice_core.o kernel/power/tuxonice_modules.o kernel/power/tuxonice_sysfs.o kernel/power/tuxonice_highlevel.o kernel/power/tuxonice_io.o kernel/power/tuxonice_pagedir.o kernel/power/tuxonice_prepare_image.o kernel/power/tuxonice_extent.o kernel/power/tuxonice_pageflags.o kernel/power/tuxonice_ui.o kernel/power/tuxonice_power_off.o kernel/power/tuxonice_atomic_copy.o kernel/power/tuxonice_storage.o kernel/power/tuxonice_netlink.o
| jashasweejena/VibeKernel | kernel/power/.tuxonice_core.o.cmd | bat | gpl-2.0 | 596 |
@echo off
rem Set the environment
if "%DevEnvDir%"=="" call "%VS100COMNTOOLS%..\..\VC\vcvarsall.bat"
set SubWCRev="C:\Program Files\TortoiseSVN\bin\SubWCRev.exe"
set ISCC="c:\apps\dev\Inno Setup 5\ISCC.exe"
cd %~dp0
rem Clean the current build
rem call clean
rem Update the version info
%SubWCRev% . GlobalAssemblyInfo.cs.in GlobalAssemblyInfo.cs
copy GlobalAssemblyInfo.cs ui\Properties\
copy GlobalAssemblyInfo.cs Decompiler\Properties\
del GlobalAssemblyInfo.cs
rem Build
msbuild ui\exceptionexplorer.csproj /m /t:Rebuild /p:Configuration=Release;OutDir=%~dp0/release/Build/
rem Sign the executables
%sign% release\build\ExceptionExplorer.exe release\build\Decompiler.dll
rem Move the debug info
mkdir release\pdb\
move release\build\*.pdb release\pdb\
%ISCC% setup\ExceptionExplorer.iss
pause | stegru/ExceptionExplorer | build.cmd | bat | gpl-2.0 | 805 |
cmd_drivers/net/wireless/built-in.o := /usr/local/arm/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/net/wireless/built-in.o drivers/net/wireless/bcmdhd/built-in.o drivers/net/wireless/btlock/built-in.o
| miamo/miamOv | drivers/net/wireless/.built-in.o.cmd | bat | gpl-2.0 | 210 |
cmd_arch/arm/lib/built-in.o := rm -f arch/arm/lib/built-in.o; /home/envy/kernel/android_toolchains/arm-eabi-linaro-4.6.2/bin/arm-eabi-ar rcsD arch/arm/lib/built-in.o
| Envious-Data/shinano-sirius_msm8974abpro | arch/arm/lib/.built-in.o.cmd | bat | gpl-2.0 | 167 |
cmd_mm/mmu_context.o := arm-none-linux-gnueabi-gcc -Wp,-MD,mm/.mmu_context.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-davinci/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(mmu_context)" -D"KBUILD_MODNAME=KBUILD_STR(mmu_context)" -c -o mm/.tmp_mmu_context.o mm/mmu_context.c
deps_mm/mmu_context.o := \
mm/mmu_context.c \
include/linux/mm.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sysctl.h) \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/ksm.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
$(wildcard include/config/memory/failure.h) \
include/linux/errno.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/gfp.h \
$(wildcard include/config/kmemcheck.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/debug/vm.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/smp.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/compaction.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/no/bootmem.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/have/memoryless/nodes.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
$(wildcard include/config/arch/has/holes/memorymodel.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/typecheck.h \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/preempt/notifiers.h) \
include/linux/thread_info.h \
$(wildcard include/config/compat.h) \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbdaf.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/asm-generic/bitsperlong.h \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/sparse/rcu/pointer.h) \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/posix_types.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/last/bit.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bitops.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/fa526.h) \
$(wildcard include/config/arch/has/barriers.h) \
$(wildcard include/config/arm/dma/mem/bufferable.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
$(wildcard include/config/cpu/32v6k.h) \
include/linux/linkage.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/linkage.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/irqflags.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/cpu/endian/be8.h) \
$(wildcard include/config/arm/thumb.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hwcap.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/outercache.h \
$(wildcard include/config/outer/cache/sync.h) \
$(wildcard include/config/outer/cache.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/memory.h \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/thumb2/kernel.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/have/tcm.h) \
include/linux/const.h \
arch/arm/mach-davinci/include/mach/memory.h \
$(wildcard include/config/arch/davinci/da8xx.h) \
$(wildcard include/config/arch/davinci/dmx.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/copy/fa.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/legacy.h) \
$(wildcard include/config/cpu/pabrt/v6.h) \
$(wildcard include/config/cpu/pabrt/v7.h) \
include/asm-generic/getorder.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/arch_hweight.h \
include/asm-generic/bitops/const_hweight.h \
include/asm-generic/bitops/lock.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
$(wildcard include/config/illegal/pointer/value.h) \
include/linux/prefetch.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/processor.h \
$(wildcard include/config/have/hw/breakpoint.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/hw_breakpoint.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/ring/buffer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include/stdarg.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/printk.h \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/debug.h) \
include/linux/dynamic_debug.h \
include/linux/jump_label.h \
$(wildcard include/config/jump/label.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/div64.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/prove/rcu.h) \
include/linux/rwlock_types.h \
include/linux/spinlock_up.h \
include/linux/rwlock.h \
include/linux/spinlock_api_up.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/atomic.h \
$(wildcard include/config/generic/atomic64.h) \
include/asm-generic/atomic64.h \
include/asm-generic/atomic-long.h \
include/linux/wait.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/current.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/init.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/hotplug.h) \
include/linux/seqlock.h \
include/linux/nodemask.h \
include/linux/bitmap.h \
include/linux/string.h \
$(wildcard include/config/binary/printf.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/string.h \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/generated/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/memory/hotremove.h) \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
$(wildcard include/config/sched/book.h) \
$(wildcard include/config/use/percpu/numa/node/id.h) \
include/linux/cpumask.h \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/percpu.h \
$(wildcard include/config/need/per/cpu/embed/first/chunk.h) \
$(wildcard include/config/need/per/cpu/page/first/chunk.h) \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/pfn.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
include/linux/percpu-defs.h \
$(wildcard include/config/debug/force/weak/per/cpu.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/mmdebug.h \
$(wildcard include/config/debug/virtual.h) \
include/linux/rbtree.h \
include/linux/prio_tree.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/want/page/debug/flags.h) \
$(wildcard include/config/aio.h) \
$(wildcard include/config/mm/owner.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/auxvec.h \
include/linux/completion.h \
include/linux/page-debug-flags.h \
$(wildcard include/config/page/poisoning.h) \
$(wildcard include/config/page/debug/something/else.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
include/linux/range.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable.h \
$(wildcard include/config/highpte.h) \
include/asm-generic/4level-fixup.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/mohawk.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cpu-single.h \
arch/arm/mach-davinci/include/mach/vmalloc.h \
arch/arm/mach-davinci/include/mach/hardware.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/arch/uses/pg/uncached.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/mmu_context.h \
include/linux/module.h \
$(wildcard include/config/symbol/prefix.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/event/tracing.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/constructors.h) \
$(wildcard include/config/sysfs.h) \
include/linux/stat.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/stat.h \
include/linux/time.h \
$(wildcard include/config/arch/uses/gettimeoffset.h) \
include/linux/math64.h \
include/linux/kmod.h \
include/linux/workqueue.h \
$(wildcard include/config/debug/objects/work.h) \
$(wildcard include/config/freezer.h) \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/timex.h \
include/linux/param.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/timex.h \
arch/arm/mach-davinci/include/mach/timex.h \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/debug/objects/free.h) \
include/linux/elf.h \
include/linux/elf-em.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/elf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/user.h \
include/linux/kobject.h \
include/linux/sysfs.h \
include/linux/kobject_ns.h \
include/linux/kref.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
include/linux/tracepoint.h \
include/linux/rcupdate.h \
$(wildcard include/config/rcu/torture/test.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/tree/rcu.h) \
$(wildcard include/config/tree/preempt/rcu.h) \
$(wildcard include/config/tiny/rcu.h) \
$(wildcard include/config/tiny/preempt/rcu.h) \
$(wildcard include/config/debug/objects/rcu/head.h) \
$(wildcard include/config/preempt/rt.h) \
include/linux/rcutree.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/module.h \
$(wildcard include/config/arm/unwind.h) \
include/trace/events/module.h \
include/trace/define_trace.h \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/lockup/detector.h) \
$(wildcard include/config/detect/hung/task.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/fanotify.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/perf/events.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/irq/time/accounting.h) \
$(wildcard include/config/debug/stack/usage.h) \
$(wildcard include/config/cgroup/sched.h) \
include/linux/capability.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/ipcbuf.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sembuf.h \
include/linux/signal.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/signal.h \
include/asm-generic/signal-defs.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/sigcontext.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rculist.h \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/debug/credentials.h) \
$(wildcard include/config/security.h) \
include/linux/key.h \
include/linux/sysctl.h \
include/linux/selinux.h \
$(wildcard include/config/security/selinux.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/uio.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/mmu_context.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/smp/on/up.h) \
$(wildcard include/config/arm/errata/411920.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/shmparam.h \
/root/kernel-dev/linux-2.6.37/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
mm/mmu_context.o: $(deps_mm/mmu_context.o)
$(deps_mm/mmu_context.o):
| srinugnt2000/linux-2.6.37 | mm/.mmu_context.o.cmd | bat | gpl-2.0 | 22,208 |
cmd_fs/jffs2/readinode.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/jffs2/.readinode.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-pnx67xx/include -Iarch/arm/plat-pnx/include -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -marm -fno-omit-frame-pointer -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -D__LINUX_ARM_ARCH__=5 -march=armv5te -mtune=arm9tdmi -msoft-float -Uarm -fno-stack-protector -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -Wdeclaration-after-statement -Wno-pointer-sign -fwrapv -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(readinode)" -D"KBUILD_MODNAME=KBUILD_STR(jffs2)" -c -o fs/jffs2/readinode.o fs/jffs2/readinode.c
deps_fs/jffs2/readinode.o := \
fs/jffs2/readinode.c \
include/linux/kernel.h \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/prove/locking.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/dynamic/printk/debug.h) \
$(wildcard include/config/numa.h) \
$(wildcard include/config/ftrace/mcount/record.h) \
/data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include/stdarg.h \
include/linux/linkage.h \
include/linux/compiler.h \
$(wildcard include/config/trace/branch/profiling.h) \
$(wildcard include/config/profile/all/branches.h) \
$(wildcard include/config/enable/must/check.h) \
$(wildcard include/config/enable/warn/deprecated.h) \
include/linux/compiler-gcc.h \
$(wildcard include/config/arch/supports/optimized/inlining.h) \
$(wildcard include/config/optimize/inlining.h) \
include/linux/compiler-gcc4.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/linkage.h \
include/linux/stddef.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/phys/addr/t/64bit.h) \
$(wildcard include/config/64bit.h) \
include/linux/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/posix_types.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/types.h \
include/asm-generic/int-ll64.h \
include/linux/bitops.h \
$(wildcard include/config/generic/find/first/bit.h) \
$(wildcard include/config/generic/find/last/bit.h) \
$(wildcard include/config/generic/find/next/bit.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bitops.h \
$(wildcard include/config/smp.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/system.h \
$(wildcard include/config/cpu/xsc3.h) \
$(wildcard include/config/cpu/sa1100.h) \
$(wildcard include/config/cpu/sa110.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/memory.h \
$(wildcard include/config/mmu.h) \
$(wildcard include/config/page/offset.h) \
$(wildcard include/config/dram/size.h) \
$(wildcard include/config/dram/base.h) \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
include/linux/const.h \
arch/arm/plat-pnx/include/mach/memory.h \
$(wildcard include/config/nkernel.h) \
$(wildcard include/config/mach/pnx/realloc.h) \
$(wildcard include/config/android/pmem.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sizes.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/vmemmap.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/irqsoff/tracer.h) \
$(wildcard include/config/preempt/tracer.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/linux/typecheck.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irqflags.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ptrace.h \
$(wildcard include/config/arm/thumb.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hwcap.h \
include/asm/nkern.h \
$(wildcard include/config/nkernel/console.h) \
include/asm/nk/f_nk.h \
include/asm/nk/nk_f.h \
include/asm-generic/cmpxchg-local.h \
include/asm-generic/cmpxchg.h \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/lock.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/ratelimit.h \
include/linux/param.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/param.h \
$(wildcard include/config/hz.h) \
include/linux/dynamic_printk.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/swab.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/swab.h \
include/linux/byteorder/generic.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/generic/bug/relative/pointers.h) \
include/linux/sched.h \
$(wildcard include/config/sched/debug.h) \
$(wildcard include/config/no/hz.h) \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/core/dump/default/elf/headers.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/audit.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/posix/mqueue.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/user/sched.h) \
$(wildcard include/config/sysfs.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/fair/group/sched.h) \
$(wildcard include/config/rt/group/sched.h) \
$(wildcard include/config/preempt/notifiers.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/preempt/rcu.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/x86/ptrace/bts.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/debug/mutexes.h) \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/cgroups.h) \
$(wildcard include/config/futex.h) \
$(wildcard include/config/compat.h) \
$(wildcard include/config/fault/injection.h) \
$(wildcard include/config/latencytop.h) \
$(wildcard include/config/function/graph/tracer.h) \
$(wildcard include/config/tracing.h) \
$(wildcard include/config/have/unstable/sched/clock.h) \
$(wildcard include/config/hotplug/cpu.h) \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/group/sched.h) \
$(wildcard include/config/mm/owner.h) \
include/linux/capability.h \
$(wildcard include/config/security/file/capabilities.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/timex.h \
include/linux/time.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cache.h \
$(wildcard include/config/arm/l1/cache/shift.h) \
$(wildcard include/config/aeabi.h) \
include/linux/seqlock.h \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/generic/lockbreak.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/thread_info.h \
$(wildcard include/config/arm/thumbee.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fpstate.h \
$(wildcard include/config/vfpv3.h) \
$(wildcard include/config/iwmmxt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/domain.h \
$(wildcard include/config/io/36.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/processor.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/spinlock_types_up.h \
include/linux/lockdep.h \
$(wildcard include/config/lock/stat.h) \
$(wildcard include/config/generic/hardirqs.h) \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/math64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/div64.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/timex.h \
arch/arm/plat-pnx/include/mach/timex.h \
include/linux/jiffies.h \
include/linux/rbtree.h \
include/linux/cpumask.h \
$(wildcard include/config/disable/obsolete/cpumask/functions.h) \
$(wildcard include/config/cpumask/offstack.h) \
$(wildcard include/config/debug/per/cpu/maps.h) \
include/linux/bitmap.h \
include/linux/string.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/string.h \
include/linux/errno.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/linux/nodemask.h \
$(wildcard include/config/highmem.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/mm_types.h \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/proc/fs.h) \
$(wildcard include/config/mmu/notifier.h) \
include/linux/auxvec.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/auxvec.h \
include/linux/prio_tree.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/completion.h \
include/linux/wait.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/current.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/page.h \
$(wildcard include/config/cpu/copy/v3.h) \
$(wildcard include/config/cpu/copy/v4wt.h) \
$(wildcard include/config/cpu/copy/v4wb.h) \
$(wildcard include/config/cpu/copy/feroceon.h) \
$(wildcard include/config/cpu/xscale.h) \
$(wildcard include/config/cpu/copy/v6.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/glue.h \
$(wildcard include/config/cpu/arm610.h) \
$(wildcard include/config/cpu/arm710.h) \
$(wildcard include/config/cpu/abrt/lv4t.h) \
$(wildcard include/config/cpu/abrt/ev4.h) \
$(wildcard include/config/cpu/abrt/ev4t.h) \
$(wildcard include/config/cpu/abrt/ev5tj.h) \
$(wildcard include/config/cpu/abrt/ev5t.h) \
$(wildcard include/config/cpu/abrt/ev6.h) \
$(wildcard include/config/cpu/abrt/ev7.h) \
$(wildcard include/config/cpu/pabrt/ifar.h) \
$(wildcard include/config/cpu/pabrt/noifar.h) \
include/asm-generic/page.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/mmu.h \
$(wildcard include/config/cpu/has/asid.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/smp.h \
$(wildcard include/config/use/generic/smp/helpers.h) \
include/linux/sem.h \
include/linux/ipc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ipcbuf.h \
include/linux/kref.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sembuf.h \
include/linux/rcupdate.h \
$(wildcard include/config/classic/rcu.h) \
$(wildcard include/config/tree/rcu.h) \
include/linux/percpu.h \
$(wildcard include/config/modules.h) \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/debug/objects.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/unevictable/lru.h) \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/cgroup/mem/res/ctlr.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/init.h \
$(wildcard include/config/hotplug.h) \
include/linux/pageblock-flags.h \
$(wildcard include/config/hugetlb/page.h) \
$(wildcard include/config/hugetlb/page/size/variable.h) \
include/linux/bounds.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
$(wildcard include/config/memory/hotremove.h) \
include/linux/notifier.h \
include/linux/mutex.h \
include/linux/mutex-debug.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
$(wildcard include/config/slub/stats.h) \
$(wildcard include/config/slub/debug.h) \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
$(wildcard include/config/debug/objects/timers.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/debugobjects.h \
$(wildcard include/config/debug/objects/free.h) \
include/linux/kobject.h \
include/linux/sysfs.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/percpu.h \
include/asm-generic/percpu.h \
$(wildcard include/config/have/setup/per/cpu/area.h) \
include/linux/rcuclassic.h \
$(wildcard include/config/rcu/cpu/stall/detector.h) \
include/linux/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/signal.h \
include/asm-generic/signal.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/sigcontext.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/fs_struct.h \
include/linux/path.h \
include/linux/pid.h \
include/linux/proportions.h \
include/linux/percpu_counter.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/resource.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/latencytop.h \
include/linux/cred.h \
$(wildcard include/config/security.h) \
include/linux/key.h \
$(wildcard include/config/sysctl.h) \
include/linux/sysctl.h \
include/linux/aio.h \
$(wildcard include/config/aio.h) \
include/linux/aio_abi.h \
include/linux/uio.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/debug/writecount.h) \
$(wildcard include/config/file/locking.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/ioctl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/ioctl.h \
include/asm-generic/ioctl.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/rculist.h \
include/linux/stat.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/stat.h \
include/linux/radix-tree.h \
include/linux/semaphore.h \
include/linux/fiemap.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/dqblk_qtree.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/err.h \
include/linux/crc32.h \
include/linux/bitrev.h \
include/linux/pagemap.h \
include/linux/mm.h \
$(wildcard include/config/stack/growsup.h) \
$(wildcard include/config/swap.h) \
$(wildcard include/config/shmem.h) \
$(wildcard include/config/ia64.h) \
$(wildcard include/config/debug/pagealloc.h) \
$(wildcard include/config/hibernation.h) \
include/linux/mmdebug.h \
$(wildcard include/config/debug/vm.h) \
$(wildcard include/config/debug/virtual.h) \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable.h \
include/asm-generic/4level-fixup.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/proc-fns.h \
$(wildcard include/config/cpu/32.h) \
$(wildcard include/config/cpu/arm7tdmi.h) \
$(wildcard include/config/cpu/arm720t.h) \
$(wildcard include/config/cpu/arm740t.h) \
$(wildcard include/config/cpu/arm9tdmi.h) \
$(wildcard include/config/cpu/arm920t.h) \
$(wildcard include/config/cpu/arm922t.h) \
$(wildcard include/config/cpu/arm925t.h) \
$(wildcard include/config/cpu/arm926t.h) \
$(wildcard include/config/cpu/arm940t.h) \
$(wildcard include/config/cpu/arm946e.h) \
$(wildcard include/config/cpu/arm1020.h) \
$(wildcard include/config/cpu/arm1020e.h) \
$(wildcard include/config/cpu/arm1022.h) \
$(wildcard include/config/cpu/arm1026.h) \
$(wildcard include/config/cpu/feroceon.h) \
$(wildcard include/config/cpu/v6.h) \
$(wildcard include/config/cpu/v7.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cpu-single.h \
arch/arm/plat-pnx/include/mach/vmalloc.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/pgtable-hwdef.h \
include/asm-generic/pgtable.h \
include/linux/page-flags.h \
$(wildcard include/config/pageflags/extended.h) \
$(wildcard include/config/ia64/uncached/allocator.h) \
$(wildcard include/config/s390.h) \
include/linux/vmstat.h \
$(wildcard include/config/vm/event/counters.h) \
include/linux/highmem.h \
include/linux/uaccess.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/uaccess.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cacheflush.h \
$(wildcard include/config/cpu/cache/v3.h) \
$(wildcard include/config/cpu/cache/v4.h) \
$(wildcard include/config/cpu/cache/v4wb.h) \
$(wildcard include/config/outer/cache.h) \
$(wildcard include/config/cpu/cache/vipt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/shmparam.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/cachetype.h \
$(wildcard include/config/cpu/cache/vivt.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/kmap_types.h \
include/linux/hardirq.h \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/linux/ftrace_irq.h \
$(wildcard include/config/dynamic/ftrace.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/hardirq.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/irq.h \
arch/arm/plat-pnx/include/mach/irqs.h \
$(wildcard include/config/arch/pnx67xx.h) \
include/linux/irq_cpustat.h \
include/linux/mtd/mtd.h \
$(wildcard include/config/mtd/partitions.h) \
$(wildcard include/config/mtd/debug.h) \
$(wildcard include/config/mtd/debug/verbose.h) \
include/linux/module.h \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/markers.h) \
$(wildcard include/config/tracepoints.h) \
$(wildcard include/config/module/unload.h) \
include/linux/kmod.h \
include/linux/elf.h \
include/linux/elf-em.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/elf.h \
$(wildcard include/config/gcov/profile.h) \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/user.h \
include/linux/moduleparam.h \
$(wildcard include/config/alpha.h) \
$(wildcard include/config/ppc64.h) \
include/linux/marker.h \
include/linux/tracepoint.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/local.h \
include/asm-generic/local.h \
/data/embedded/acer/acergit/linux/arch/arm/include/asm/module.h \
include/linux/mtd/compatmac.h \
include/mtd/mtd-abi.h \
fs/jffs2/nodelist.h \
$(wildcard include/config/jffs2/fs/xattr.h) \
$(wildcard include/config/jffs2/fs/writebuffer.h) \
include/linux/jffs2.h \
include/linux/magic.h \
fs/jffs2/jffs2_fs_sb.h \
$(wildcard include/config/jffs2/fs/wbuf/verify.h) \
fs/jffs2/jffs2_fs_i.h \
$(wildcard include/config/jffs2/fs/posix/acl.h) \
include/linux/posix_acl.h \
fs/jffs2/xattr.h \
$(wildcard include/config/jffs2/fs/security.h) \
include/linux/xattr.h \
fs/jffs2/acl.h \
fs/jffs2/summary.h \
$(wildcard include/config/jffs2/summary.h) \
fs/jffs2/os-linux.h \
fs/jffs2/debug.h \
$(wildcard include/config/jffs2/fs/debug.h) \
fs/jffs2/readinode.o: $(deps_fs/jffs2/readinode.o)
$(deps_fs/jffs2/readinode.o):
| yohanes/Acer-BeTouch-E130-Linux-Kernel | fs/jffs2/.readinode.o.cmd | bat | gpl-2.0 | 22,740 |
cmd_drivers/hsi/built-in.o := /mnt/640/ubu/gtabkernelsrc/android_prebuilt_toolchains-master/arm-cortex_a15-linux-gnueabihf-linaro_4.9.1/bin/arm-cortex_a15-linux-gnueabihf-ld -EL -r -o drivers/hsi/built-in.o drivers/hsi/clients/built-in.o
| chase2534/gtab47.freekern | drivers/hsi/.built-in.o.cmd | bat | gpl-2.0 | 243 |
/* REXX */
SETLOCAL
"set include=f:\ibmcpp\dtools\h;f:\ibmcpp\dtools\inc;f:\ibmcpp\inc;p:\COMi;"
"set lib=f:\ibmcpp\lib;p:\COMi\lib;"
"set path=f:\ibmcpp\dtools;"
'p:'
'cd \COMi'
'nmake /f debug.mak'
IF RC <> 0 THEN SIGNAL build_error
'cd debug'
'..\mapsym debug'
'copy debug.sy? \\oc_gilroy\cee\comm'
'cd ..'
SIGNAL end_make
build_error:
SAY "RC = "RC
SAY ""
SAY "failed to build debug"
SAY ""
end_make:
ENDLOCAL
| OS2World/APP-COMM-ComScope | COMI/mdd_.cmd | bat | gpl-2.0 | 418 |
cmd_fs/jbd2/jbd2.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/jbd2/jbd2.o fs/jbd2/transaction.o fs/jbd2/commit.o fs/jbd2/recovery.o fs/jbd2/checkpoint.o fs/jbd2/revoke.o fs/jbd2/journal.o
| PrestigeMod/SHW-M440S | fs/jbd2/.jbd2.o.cmd | bat | gpl-2.0 | 252 |
cmd_networking/nameif.o := gcc -Wp,-MD,networking/.nameif.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.18.4)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wunused-parameter -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(nameif)" -D"KBUILD_MODNAME=KBUILD_STR(nameif)" -c -o networking/nameif.o networking/nameif.c
deps_networking/nameif.o := \
networking/nameif.c \
$(wildcard include/config/feature/nameif/extended.h) \
$(wildcard include/config/feature/clean/up.h) \
include/libbb.h \
$(wildcard include/config/selinux.h) \
$(wildcard include/config/locale/support.h) \
$(wildcard include/config/feature/shadowpasswds.h) \
$(wildcard include/config/use/bb/shadow.h) \
$(wildcard include/config/use/bb/pwd/grp.h) \
$(wildcard include/config/lfs.h) \
$(wildcard include/config/feature/buffers/go/on/stack.h) \
$(wildcard include/config/feature/buffers/go/in/bss.h) \
$(wildcard include/config/feature/ipv6.h) \
$(wildcard include/config/feature/seamless/lzma.h) \
$(wildcard include/config/feature/seamless/bz2.h) \
$(wildcard include/config/feature/seamless/gz.h) \
$(wildcard include/config/feature/seamless/z.h) \
$(wildcard include/config/feature/check/names.h) \
$(wildcard include/config/feature/utmp.h) \
$(wildcard include/config/feature/prefer/applets.h) \
$(wildcard include/config/busybox/exec/path.h) \
$(wildcard include/config/long/opts.h) \
$(wildcard include/config/feature/getopt/long.h) \
$(wildcard include/config/feature/pidfile.h) \
$(wildcard include/config/feature/syslog.h) \
$(wildcard include/config/feature/individual.h) \
$(wildcard include/config/echo.h) \
$(wildcard include/config/printf.h) \
$(wildcard include/config/test.h) \
$(wildcard include/config/kill.h) \
$(wildcard include/config/chown.h) \
$(wildcard include/config/ls.h) \
$(wildcard include/config/xxx.h) \
$(wildcard include/config/route.h) \
$(wildcard include/config/feature/hwib.h) \
$(wildcard include/config/desktop.h) \
$(wildcard include/config/feature/crond/d.h) \
$(wildcard include/config/use/bb/crypt.h) \
$(wildcard include/config/feature/adduser/to/group.h) \
$(wildcard include/config/feature/del/user/from/group.h) \
$(wildcard include/config/ioctl/hex2str/error.h) \
$(wildcard include/config/feature/editing.h) \
$(wildcard include/config/feature/editing/history.h) \
$(wildcard include/config/feature/editing/savehistory.h) \
$(wildcard include/config/feature/tab/completion.h) \
$(wildcard include/config/feature/username/completion.h) \
$(wildcard include/config/feature/editing/vi.h) \
$(wildcard include/config/pmap.h) \
$(wildcard include/config/feature/show/threads.h) \
$(wildcard include/config/feature/ps/additional/columns.h) \
$(wildcard include/config/feature/topmem.h) \
$(wildcard include/config/feature/top/smp/process.h) \
$(wildcard include/config/killall.h) \
$(wildcard include/config/pgrep.h) \
$(wildcard include/config/pkill.h) \
$(wildcard include/config/pidof.h) \
$(wildcard include/config/sestatus.h) \
$(wildcard include/config/feature/mtab/support.h) \
$(wildcard include/config/feature/devfs.h) \
include/platform.h \
$(wildcard include/config/werror.h) \
$(wildcard include/config/big/endian.h) \
$(wildcard include/config/little/endian.h) \
$(wildcard include/config/nommu.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/limits.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include-fixed/syslimits.h \
/usr/include/limits.h \
/usr/include/features.h \
/usr/include/x86_64-linux-gnu/bits/predefs.h \
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
/usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/byteswap.h \
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
/usr/include/endian.h \
/usr/include/x86_64-linux-gnu/bits/endian.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdint.h \
/usr/include/stdint.h \
/usr/include/x86_64-linux-gnu/bits/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdbool.h \
/usr/include/ctype.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
/usr/include/xlocale.h \
/usr/include/dirent.h \
/usr/include/x86_64-linux-gnu/bits/dirent.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stddef.h \
/usr/include/errno.h \
/usr/include/x86_64-linux-gnu/bits/errno.h \
/usr/include/linux/errno.h \
/usr/include/x86_64-linux-gnu/asm/errno.h \
/usr/include/asm-generic/errno.h \
/usr/include/asm-generic/errno-base.h \
/usr/include/fcntl.h \
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
/usr/include/x86_64-linux-gnu/sys/types.h \
/usr/include/time.h \
/usr/include/x86_64-linux-gnu/sys/select.h \
/usr/include/x86_64-linux-gnu/bits/select.h \
/usr/include/x86_64-linux-gnu/bits/sigset.h \
/usr/include/x86_64-linux-gnu/bits/time.h \
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
/usr/include/x86_64-linux-gnu/bits/uio.h \
/usr/include/x86_64-linux-gnu/bits/stat.h \
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
/usr/include/inttypes.h \
/usr/include/netdb.h \
/usr/include/netinet/in.h \
/usr/include/x86_64-linux-gnu/sys/socket.h \
/usr/include/x86_64-linux-gnu/sys/uio.h \
/usr/include/x86_64-linux-gnu/bits/socket.h \
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
/usr/include/x86_64-linux-gnu/asm/socket.h \
/usr/include/asm-generic/socket.h \
/usr/include/x86_64-linux-gnu/asm/sockios.h \
/usr/include/asm-generic/sockios.h \
/usr/include/x86_64-linux-gnu/bits/socket2.h \
/usr/include/x86_64-linux-gnu/bits/in.h \
/usr/include/rpc/netdb.h \
/usr/include/x86_64-linux-gnu/bits/siginfo.h \
/usr/include/x86_64-linux-gnu/bits/netdb.h \
/usr/include/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
/usr/include/signal.h \
/usr/include/x86_64-linux-gnu/bits/signum.h \
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
/usr/include/stdio.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.6.1/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
/usr/include/stdlib.h \
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
/usr/include/alloca.h \
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
/usr/include/string.h \
/usr/include/x86_64-linux-gnu/bits/string3.h \
/usr/include/x86_64-linux-gnu/sys/poll.h \
/usr/include/x86_64-linux-gnu/bits/poll.h \
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
/usr/include/asm-generic/ioctls.h \
/usr/include/linux/ioctl.h \
/usr/include/x86_64-linux-gnu/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h \
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
/usr/include/x86_64-linux-gnu/sys/mman.h \
/usr/include/x86_64-linux-gnu/bits/mman.h \
/usr/include/x86_64-linux-gnu/sys/stat.h \
/usr/include/x86_64-linux-gnu/sys/time.h \
/usr/include/x86_64-linux-gnu/sys/wait.h \
/usr/include/x86_64-linux-gnu/sys/resource.h \
/usr/include/x86_64-linux-gnu/bits/resource.h \
/usr/include/termios.h \
/usr/include/x86_64-linux-gnu/bits/termios.h \
/usr/include/unistd.h \
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
/usr/include/x86_64-linux-gnu/bits/environments.h \
/usr/include/x86_64-linux-gnu/bits/confname.h \
/usr/include/getopt.h \
/usr/include/x86_64-linux-gnu/bits/unistd.h \
/usr/include/x86_64-linux-gnu/sys/param.h \
/usr/include/linux/param.h \
/usr/include/x86_64-linux-gnu/asm/param.h \
/usr/include/asm-generic/param.h \
/usr/include/mntent.h \
/usr/include/paths.h \
/usr/include/x86_64-linux-gnu/sys/statfs.h \
/usr/include/x86_64-linux-gnu/bits/statfs.h \
/usr/include/pwd.h \
/usr/include/grp.h \
/usr/include/arpa/inet.h \
include/pwd_.h \
include/grp_.h \
include/shadow_.h \
include/xatonum.h \
/usr/include/syslog.h \
/usr/include/x86_64-linux-gnu/sys/syslog.h \
/usr/include/x86_64-linux-gnu/bits/syslog-path.h \
/usr/include/x86_64-linux-gnu/bits/syslog.h \
/usr/include/net/if.h \
$(wildcard include/config/namesize.h) \
/usr/include/netinet/ether.h \
/usr/include/netinet/if_ether.h \
/usr/include/linux/if_ether.h \
/usr/include/linux/types.h \
/usr/include/x86_64-linux-gnu/asm/types.h \
/usr/include/asm-generic/types.h \
/usr/include/asm-generic/int-ll64.h \
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
/usr/include/asm-generic/bitsperlong.h \
$(wildcard include/config/64bit.h) \
/usr/include/linux/posix_types.h \
/usr/include/linux/stddef.h \
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
/usr/include/net/ethernet.h \
/usr/include/net/if_arp.h \
/usr/include/linux/sockios.h \
networking/nameif.o: $(deps_networking/nameif.o)
$(deps_networking/nameif.o):
| muthumani2/Muthu-busybox | networking/.nameif.o.cmd | bat | gpl-2.0 | 10,406 |
@echo off
CALL _env.bat
CALL make xtarget -f MyMakefile.mak
pause | flake123p/ProjectH | Make/PY01_write_file_by_py/demo.bat | bat | gpl-3.0 | 68 |
@echo off
set [email protected]
echo **********************************************************************
echo ¢¥¤¨â¥ ¯ à®«ì ®â %account% ¤«ï ¯®¤ª«î票ï á¥â¥¢®£® ¤¨áª
echo **********************************************************************
:lb_start
net use y: \\srv-file-01\dev * /user:%account%
if errorlevel 1 goto lb_start
| pfzim/scripts | other/script-bk-share.cmd | bat | gpl-3.0 | 344 |
/* cmd/pyramid.cmd - NexusServV3
* Copyright (C) 2012-2013 #Nexus project
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if ($cchan[0] != "#") {
sendserv("NOTICE $nick : .");
sendserv("NOTICE $nick : ...");
sendserv("NOTICE $nick : .....");
sendserv("NOTICE $nick : .......");
sendserv("NOTICE $nick : .........");
sendserv("NOTICE $nick :...........");
sendserv("NOTICE $nick :Thats Cleopatras pyramid!");
return(0);
}
$params = $paramzz;
$tchan = strtolower($target);
$lnick = strtolower($nick);
$area = "";
$axs = 0;
$cfound = 0;
global $userinfo, $chans, $botnick, $god;
$acc = $userinfo["$lnick"]["auth"];
$fop = fopen("./conf/users.conf","r+t");
while ($fra = fgets($fop)) {
$fra = str_replace("\r","",$fra);
$fra = str_replace("\n","",$fra);
$frg = explode(" ",$fra);
if ($frg[0] == "-") {
$area = $frg[1];
}
else {
if ($area == $tchan) {
if ($frg[0] == $userinfo["$lnick"]["auth"]) {
$axs = $frg[1];
}
$cfound = 1;
}
}
}
fclose($fop);
$area = "";
$fop = fopen("./conf/settings.conf","r+t");
while ($fra = fgets($fop)) {
$fra = str_replace("\r","",$fra);
$fra = str_replace("\n","",$fra);
$frg = explode(" ",$fra);
if ($frg[0] == "-") {
$area = $frg[1];
}
else {
if ($area == $tchan) {
$tsets["$frg[0]"] = substr($fra,strlen($frg[0]." "));
}
}
}
if ($tsets['toys'] == '' || $tsets['toys'] == '0') {
sendserv("NOTICE $nick :Toys are disabled in \002".$chans[$tchan]['name']."\002.");
}
else {
if ($tsets['toys'] == '1') {
sendserv("NOTICE $nick : .");
sendserv("NOTICE $nick : ...");
sendserv("NOTICE $nick : .....");
sendserv("NOTICE $nick : .......");
sendserv("NOTICE $nick : .........");
sendserv("NOTICE $nick :...........");
sendserv("NOTICE $nick :Thats Cleopatras pyramid!");
}
else {
sendserv("PRIVMSG $target :\002$nick\002: .");
sendserv("PRIVMSG $target :\002$nick\002: ...");
sendserv("PRIVMSG $target :\002$nick\002: .....");
sendserv("PRIVMSG $target :\002$nick\002: .......");
sendserv("PRIVMSG $target :\002$nick\002: .........");
sendserv("PRIVMSG $target :\002$nick\002: ...........");
sendserv("PRIVMSG $target :\002$nick\002: Thats Cleopatras pyramid!");
}
} | Nexus-IRC/NexusServV3 | cmd/pyramid.cmd | bat | gpl-3.0 | 2,815 |
: Build quickly without cleaning or testing
if "%jarfile%" == "" (
call setvars.bat
)
mvn install -f "%pomfile%" -Dmaven.test.skip | sgdc3/AuthMeReloaded | src/tools/bathelpers/quick_build.bat | bat | gpl-3.0 | 133 |
python -m cProfile mishkal-console.py -l 10000 -f samples/Corpus/08.utf8.txt >output/08.10000.06.txt
| linuxscout/mishkal | tests/tools/test_tashkeel.bat | bat | gpl-3.0 | 101 |
rem <h4>FeatureDomain:</h4>
rem BrowserPlugin Publishing
rem <h4>FeatureDescription:</h4>
rem configure matcmdprinting-package
rem
rem @author Michael Schreiner <[email protected]>
rem @category BrowserPlugin
rem @copyright Copyright (c) 2005, Michael Schreiner
rem @license http://mozilla.org/MPL/2.0/ Mozilla Public License 2.0
rem set mypath
set CONFIGBASEPATH=%~dp0
rem set firefox
set FFCMD="C:\ProgrammePortable\PortableApps\PortableApps\FirefoxPortable\App\Firefox"\firefox
set ZIPCMD="C:\ProgrammePortable\PortableApps\PortableApps\7-ZipPortable\App\7-Zip64"\7z a
| das-praktische-schreinerlein/Mat-CmdPrinting | config/config.bat | bat | mpl-2.0 | 594 |
@echo off
rem -------------------------------------------------------------------------
rem JBoss Admin CLI Script for Windows
rem -------------------------------------------------------------------------
rem $Id$
@if not "%ECHO%" == "" echo %ECHO%
@if "%OS%" == "Windows_NT" setlocal
if "%OS%" == "Windows_NT" (
set "DIRNAME=%~dp0%"
) else (
set DIRNAME=.\
)
pushd "%DIRNAME%.."
set "RESOLVED_JBOSS_HOME=%CD%"
popd
if "x%JBOSS_HOME%" == "x" (
set "JBOSS_HOME=%RESOLVED_JBOSS_HOME%"
)
pushd "%JBOSS_HOME%"
set "SANITIZED_JBOSS_HOME=%CD%"
popd
if /i "%RESOLVED_JBOSS_HOME%" NEQ "%SANITIZED_JBOSS_HOME%" (
echo.
echo WARNING: JBOSS_HOME may be pointing to a different installation - unpredictable results may occur.
echo.
echo JBOSS_HOME: "%JBOSS_HOME%"
echo.
)
rem Setup JBoss specific properties
if "x%JAVA_HOME%" == "x" (
set JAVA=java
echo JAVA_HOME is not set. Unexpected results may occur.
echo Set JAVA_HOME to the directory of your local JDK to avoid this message.
) else (
set "JAVA=%JAVA_HOME%\bin\java"
)
rem Find jboss-modules.jar, or we can't continue
set "JBOSS_RUNJAR=%JBOSS_HOME%\jboss-modules.jar"
if not exist "%JBOSS_RUNJAR%" (
echo Could not locate "%JBOSS_RUNJAR%".
echo Please check that you are in the bin directory when running this script.
goto END
)
rem Set default module root paths
if "x%JBOSS_MODULEPATH%" == "x" (
set "JBOSS_MODULEPATH=%JBOSS_HOME%\modules"
)
rem Add base package for L&F
set "JAVA_OPTS=%JAVA_OPTS% -Djboss.modules.system.pkgs=com.sun.java.swing"
set LOGGING_CONFIG=
echo "%JAVA_OPTS%" | findstr /I "logging.configuration" > nul
if errorlevel == 1 (
set "LOGGING_CONFIG=-Dlogging.configuration=file:%JBOSS_HOME%\bin\jboss-cli-logging.properties"
) else (
echo logging.configuration already set in JAVA_OPTS
)
if "x%LOGGING_CONFIG%" == "x" (
"%JAVA%" %JAVA_OPTS% ^
-jar "%JBOSS_RUNJAR%" ^
-mp "%JBOSS_MODULEPATH%" ^
org.jboss.as.cli ^
%*
) else (
"%JAVA%" %JAVA_OPTS% "%LOGGING_CONFIG%" ^
-jar "%JBOSS_RUNJAR%" ^
-mp "%JBOSS_MODULEPATH%" ^
org.jboss.as.cli ^
%*
)
:END
if "x%NOPAUSE%" == "x" pause
| sonyplaystation/jbosss | bin/jboss-cli.bat | bat | lgpl-2.1 | 2,165 |
%DAF_ROOT%\bin\TAFServerd.exe -TAFServices %DAF_ROOT%/bin/DSTO.conf:test01 -DCPSConfigFile dds.ini -TAFBaseContext TAF/DSTO -ORBListenEndpoints iiop://:8989
| LASAGNE-Open-Systems/LASAGNE-Core | bin/TAFServerd.bat | bat | lgpl-3.0 | 158 |
mvn clean package javadoc:jar javadoc:test-jar release:clean release:prepare release:perform | allex/htmlcompressor-maven-plugin | build-release.bat | bat | apache-2.0 | 92 |
@ruby.exe %~dp0reverse_no_metadata %*
| puppetlabs/pxp-agent | lib/tests/resources/broken_modules/reverse_no_metadata.bat | bat | apache-2.0 | 38 |
@rem Copyright 2019 Google LLC. All rights reserved.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
setlocal ENABLEDELAYEDEXPANSION
set CMAKE_GENERATOR="Visual Studio 16 2019"
set CONFIGURATION=RelWithDebInfo
set CRC32C_INSTALL_PREFIX=%cd%\build\%CONFIGURATION%
@rem Path to cmake, env var to make it easier to point to a specific version
set cmake=cmake
@rem python version should be set as an argument, if not, default to python 3.9
set PYTHON_VERSION=%1
if "%PYTHON_VERSION%"=="" (
echo "Python version was not provided, using Python 3.9"
set PYTHON_VERSION=3.9
)
if "%PYTHON_VERSION%"=="3.10-dev" (
set PYTHON_VERSION=3.10
)
py -0
py -%PYTHON_VERSION% -m pip install cmake
git submodule update --init --recursive
FOR %%V IN (32,64) DO (
set TARGET_PLATFORM="x64"
if "%%V"=="32" (
set TARGET_PLATFORM="Win32"
)
echo "Target Platform: !TARGET_PLATFORM!"
pushd google_crc32c
@rem reset hard to cleanup any changes done by a previous build.
git reset --hard
git clean -fxd
del /s /q CMakeFiles\
del CMakeCache.txt
mkdir build
cd build
echo "Running cmake with Generator: %CMAKE_GENERATOR%, Platform: !TARGET_PLATFORM!, Install Prefix: %CRC32C_INSTALL_PREFIX%"
%cmake% -G %CMAKE_GENERATOR% -A !TARGET_PLATFORM! -DCMAKE_BUILD_TYPE=Release -DCRC32C_BUILD_BENCHMARKS=no -DCRC32C_BUILD_TESTS=no -DBUILD_SHARED_LIBS=yes -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=yes -DCRC32C_USE_GLOG=0 -DCMAKE_INSTALL_PREFIX:PATH=%CRC32C_INSTALL_PREFIX% ..
%cmake% --build . --config "%CONFIGURATION%" --target install
dir %CRC32C_INSTALL_PREFIX% /b /s
popd
dir %CRC32C_INSTALL_PREFIX%\bin
echo "Copying Binary to root: %CRC32C_INSTALL_PREFIX%\bin\crc32c.dll"
copy %CRC32C_INSTALL_PREFIX%\bin\crc32c.dll .
py -%PYTHON_VERSION%-%%V -m pip install --upgrade pip setuptools wheel
echo "Building C extension"
py -%PYTHON_VERSION%-%%V setup.py build_ext --include-dirs=%CRC32C_INSTALL_PREFIX%\include --library-dirs=%CRC32C_INSTALL_PREFIX%\lib
echo "Building Wheel"
py -%PYTHON_VERSION%-%%V -m pip wheel . --wheel-dir wheels/
)
| googleapis/python-crc32c | scripts/windows/build.bat | bat | apache-2.0 | 2,667 |
git pull
python update_repo.py repository.marcelveldt
python pdate-directory-structure.py
git add .
git commit -a -m "update repo"
git push
pause
| marcelveldt/repository.marcelveldt | update_repo.bat | bat | apache-2.0 | 149 |
@echo off
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild build.csproj /target:Test /m
pause | ArnoldZokas/xunit.net-specifications | cfg/test.bat | bat | bsd-3-clause | 97 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXNSPI.S05_NegativeBehavior.MSOXNSPI_S05_TC31_NspiGetPropsFailure /testcontainer:..\..\MS-OXNSPI\TestSuite\bin\Debug\MS-OXNSPI_TestSuite.dll /runconfig:..\..\MS-OXNSPI\MS-OXNSPI.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeMAPI/Source/Scripts/MS-OXNSPI/RunMSOXNSPI_S05_TC31_NspiGetPropsFailure.cmd | bat | mit | 298 |
nuget.exe pack ContractExtensions.nuspec | Diagonactic/ReSharperContractExtensions | package.bat | bat | mit | 40 |
deps_config := \
lib/Kconfig \
drivers/virtio/Kconfig \
drivers/lguest/Kconfig \
drivers/vhost/Kconfig \
virt/kvm/Kconfig \
arch/x86/kvm/Kconfig \
drivers/crypto/Kconfig \
crypto/async_tx/Kconfig \
crypto/Kconfig \
security/integrity/ima/Kconfig \
security/tomoyo/Kconfig \
security/smack/Kconfig \
security/selinux/Kconfig \
security/Kconfig \
lib/Kconfig.kmemcheck \
lib/Kconfig.kgdb \
samples/Kconfig \
kernel/trace/Kconfig \
mm/Kconfig.debug \
lib/Kconfig.debug \
arch/x86/Kconfig.debug \
fs/dlm/Kconfig \
fs/nls/Kconfig \
fs/partitions/Kconfig \
fs/9p/Kconfig \
fs/afs/Kconfig \
fs/coda/Kconfig \
fs/ncpfs/Kconfig \
fs/cifs/Kconfig \
fs/ceph/Kconfig \
fs/smbfs/Kconfig \
net/sunrpc/Kconfig \
fs/nfsd/Kconfig \
fs/nfs/Kconfig \
fs/exofs/Kconfig \
fs/ufs/Kconfig \
fs/sysv/Kconfig \
fs/romfs/Kconfig \
fs/qnx4/Kconfig \
fs/hpfs/Kconfig \
fs/omfs/Kconfig \
fs/minix/Kconfig \
fs/freevxfs/Kconfig \
fs/squashfs/Kconfig \
fs/cramfs/Kconfig \
fs/logfs/Kconfig \
fs/ubifs/Kconfig \
fs/jffs2/Kconfig \
fs/yaffs2/Kconfig \
fs/efs/Kconfig \
fs/bfs/Kconfig \
fs/befs/Kconfig \
fs/hfsplus/Kconfig \
fs/hfs/Kconfig \
fs/ecryptfs/Kconfig \
fs/affs/Kconfig \
fs/adfs/Kconfig \
fs/configfs/Kconfig \
fs/sysfs/Kconfig \
fs/proc/Kconfig \
fs/ntfs/Kconfig \
fs/fat/Kconfig \
fs/udf/Kconfig \
fs/isofs/Kconfig \
fs/cachefiles/Kconfig \
fs/fscache/Kconfig \
fs/fuse/Kconfig \
fs/autofs4/Kconfig \
fs/autofs/Kconfig \
fs/quota/Kconfig \
fs/notify/inotify/Kconfig \
fs/notify/dnotify/Kconfig \
fs/notify/Kconfig \
fs/nilfs2/Kconfig \
fs/btrfs/Kconfig \
fs/ocfs2/Kconfig \
fs/gfs2/Kconfig \
fs/xfs/Kconfig \
fs/jfs/Kconfig \
fs/reiserfs/Kconfig \
fs/jbd2/Kconfig \
fs/jbd/Kconfig \
fs/ext4/Kconfig \
fs/ext3/Kconfig \
fs/ext2/Kconfig \
fs/Kconfig \
drivers/firmware/Kconfig \
drivers/mod_guardian/Kconfig \
drivers/platform/x86/Kconfig \
drivers/platform/Kconfig \
drivers/staging/msm/Kconfig \
drivers/staging/mrst-touchscreen/Kconfig \
drivers/staging/xgifb/Kconfig \
drivers/staging/adis16255/Kconfig \
drivers/staging/ti-st/Kconfig \
drivers/staging/cxt1e1/Kconfig \
drivers/staging/crystalhd/Kconfig \
drivers/staging/dt3155v4l/Kconfig \
drivers/staging/dt3155/Kconfig \
drivers/staging/sm7xx/Kconfig \
drivers/staging/samsung-laptop/Kconfig \
drivers/staging/batman-adv/Kconfig \
drivers/staging/wlags49_h25/Kconfig \
drivers/staging/wlags49_h2/Kconfig \
drivers/staging/ramzswap/Kconfig \
drivers/staging/iio/trigger/Kconfig \
drivers/staging/iio/light/Kconfig \
drivers/staging/iio/imu/Kconfig \
drivers/staging/iio/gyro/Kconfig \
drivers/staging/iio/adc/Kconfig \
drivers/staging/iio/accel/Kconfig \
drivers/staging/iio/Kconfig \
drivers/staging/sep/Kconfig \
drivers/staging/memrar/Kconfig \
drivers/staging/rar_register/Kconfig \
drivers/staging/vme/boards/Kconfig \
drivers/staging/vme/devices/Kconfig \
drivers/staging/vme/bridges/Kconfig \
drivers/staging/vme/Kconfig \
drivers/staging/hv/Kconfig \
drivers/staging/udlfb/Kconfig \
drivers/staging/vt6656/Kconfig \
drivers/staging/vt6655/Kconfig \
drivers/staging/quatech_usb2/Kconfig \
drivers/staging/serqt_usb2/Kconfig \
drivers/staging/octeon/Kconfig \
drivers/gpu/drm/nouveau/Kconfig \
drivers/gpu/drm/vmwgfx/Kconfig \
drivers/staging/line6/Kconfig \
drivers/staging/phison/Kconfig \
drivers/staging/pohmelfs/Kconfig \
drivers/staging/dream/camera/Kconfig \
drivers/staging/dream/Kconfig \
drivers/staging/android/Kconfig \
drivers/staging/frontier/Kconfig \
drivers/staging/rtl8192e/Kconfig \
drivers/staging/rtl8192u/Kconfig \
drivers/staging/rtl8192su/Kconfig \
drivers/staging/rtl8187se/Kconfig \
drivers/staging/panel/Kconfig \
drivers/staging/asus_oled/Kconfig \
drivers/staging/comedi/Kconfig \
drivers/staging/rt2870/Kconfig \
drivers/staging/rt2860/Kconfig \
drivers/staging/otus/Kconfig \
drivers/staging/echo/Kconfig \
drivers/staging/wlan-ng/Kconfig \
drivers/staging/winbond/Kconfig \
drivers/staging/usbip/Kconfig \
drivers/staging/tm6000/Kconfig \
drivers/staging/cx25821/Kconfig \
drivers/staging/go7007/Kconfig \
drivers/staging/slicoss/Kconfig \
drivers/staging/et131x/Kconfig \
drivers/staging/Kconfig \
drivers/xen/Kconfig \
drivers/vlynq/Kconfig \
drivers/uio/Kconfig \
drivers/auxdisplay/Kconfig \
drivers/dca/Kconfig \
drivers/dma/Kconfig \
drivers/rtc/Kconfig \
drivers/edac/Kconfig \
drivers/infiniband/ulp/iser/Kconfig \
drivers/infiniband/ulp/srp/Kconfig \
drivers/infiniband/ulp/ipoib/Kconfig \
drivers/infiniband/hw/nes/Kconfig \
drivers/infiniband/hw/mlx4/Kconfig \
drivers/infiniband/hw/cxgb4/Kconfig \
drivers/infiniband/hw/cxgb3/Kconfig \
drivers/infiniband/hw/amso1100/Kconfig \
drivers/infiniband/hw/ehca/Kconfig \
drivers/infiniband/hw/qib/Kconfig \
drivers/infiniband/hw/ipath/Kconfig \
drivers/infiniband/hw/mthca/Kconfig \
drivers/infiniband/Kconfig \
drivers/accessibility/Kconfig \
drivers/switch/Kconfig \
drivers/leds/Kconfig \
drivers/memstick/host/Kconfig \
drivers/memstick/core/Kconfig \
drivers/memstick/Kconfig \
drivers/mmc/host/Kconfig \
drivers/mmc/card/Kconfig \
drivers/mmc/core/Kconfig \
drivers/mmc/Kconfig \
drivers/uwb/Kconfig \
drivers/usb/otg/Kconfig \
drivers/usb/gadget/Kconfig \
drivers/usb/atm/Kconfig \
drivers/usb/misc/sisusbvga/Kconfig \
drivers/usb/misc/Kconfig \
drivers/usb/serial/Kconfig \
drivers/usb/image/Kconfig \
drivers/usb/storage/Kconfig \
drivers/usb/class/Kconfig \
drivers/usb/musb/Kconfig \
drivers/usb/host/Kconfig \
drivers/usb/wusbcore/Kconfig \
drivers/usb/mon/Kconfig \
drivers/usb/core/Kconfig \
drivers/usb/Kconfig \
drivers/hid/usbhid/Kconfig \
drivers/hid/Kconfig \
sound/oss/Kconfig \
sound/soc/codecs/Kconfig \
sound/soc/txx9/Kconfig \
sound/soc/sh/Kconfig \
sound/soc/s6000/Kconfig \
sound/soc/s3c24xx/Kconfig \
sound/soc/pxa/Kconfig \
sound/soc/omap/Kconfig \
sound/soc/imx/Kconfig \
sound/soc/fsl/Kconfig \
sound/soc/davinci/Kconfig \
sound/soc/blackfin/Kconfig \
sound/soc/au1x/Kconfig \
sound/soc/atmel/Kconfig \
sound/soc/Kconfig \
sound/parisc/Kconfig \
sound/sparc/Kconfig \
sound/pcmcia/Kconfig \
sound/usb/Kconfig \
sound/sh/Kconfig \
sound/mips/Kconfig \
sound/spi/Kconfig \
sound/atmel/Kconfig \
sound/arm/Kconfig \
sound/aoa/soundbus/Kconfig \
sound/aoa/codecs/Kconfig \
sound/aoa/fabrics/Kconfig \
sound/aoa/Kconfig \
sound/ppc/Kconfig \
sound/pci/hda/Kconfig \
sound/pci/Kconfig \
sound/isa/Kconfig \
sound/drivers/Kconfig \
sound/core/seq/Kconfig \
sound/core/Kconfig \
sound/oss/dmasound/Kconfig \
sound/Kconfig \
drivers/video/logo/Kconfig \
drivers/video/console/Kconfig \
drivers/video/display/Kconfig \
drivers/video/backlight/Kconfig \
drivers/video/omap2/displays/Kconfig \
drivers/video/omap2/omapfb/Kconfig \
drivers/video/omap2/dss/Kconfig \
drivers/video/omap2/Kconfig \
drivers/video/omap/Kconfig \
drivers/video/geode/Kconfig \
drivers/gpu/drm/radeon/Kconfig \
drivers/gpu/drm/Kconfig \
drivers/gpu/vga/Kconfig \
drivers/char/agp/Kconfig \
drivers/video/Kconfig \
drivers/media/dvb/frontends/Kconfig \
drivers/media/dvb/ngene/Kconfig \
drivers/media/dvb/mantis/Kconfig \
drivers/media/dvb/pt1/Kconfig \
drivers/media/dvb/firewire/Kconfig \
drivers/media/dvb/dm1105/Kconfig \
drivers/media/dvb/pluto2/Kconfig \
drivers/media/dvb/bt8xx/Kconfig \
drivers/media/dvb/b2c2/Kconfig \
drivers/media/dvb/siano/Kconfig \
drivers/media/dvb/ttusb-dec/Kconfig \
drivers/media/dvb/ttusb-budget/Kconfig \
drivers/media/dvb/dvb-usb/Kconfig \
drivers/media/dvb/ttpci/Kconfig \
drivers/media/dvb/Kconfig \
drivers/media/radio/si470x/Kconfig \
drivers/media/radio/Kconfig \
drivers/media/video/pwc/Kconfig \
drivers/media/video/zc0301/Kconfig \
drivers/media/video/sn9c102/Kconfig \
drivers/media/video/et61x251/Kconfig \
drivers/media/video/usbvideo/Kconfig \
drivers/media/video/usbvision/Kconfig \
drivers/media/video/cx231xx/Kconfig \
drivers/media/video/tlg2300/Kconfig \
drivers/media/video/em28xx/Kconfig \
drivers/media/video/hdpvr/Kconfig \
drivers/media/video/pvrusb2/Kconfig \
drivers/media/video/gspca/gl860/Kconfig \
drivers/media/video/gspca/stv06xx/Kconfig \
drivers/media/video/gspca/m5602/Kconfig \
drivers/media/video/gspca/Kconfig \
drivers/media/video/uvc/Kconfig \
drivers/media/video/saa7164/Kconfig \
drivers/media/video/cx18/Kconfig \
drivers/media/video/ivtv/Kconfig \
drivers/media/video/au0828/Kconfig \
drivers/media/video/cx23885/Kconfig \
drivers/media/video/cx88/Kconfig \
drivers/media/video/saa7134/Kconfig \
drivers/media/video/zoran/Kconfig \
drivers/media/video/cpia2/Kconfig \
drivers/media/video/bt8xx/Kconfig \
drivers/media/video/omap/Kconfig \
drivers/media/video/cx25840/Kconfig \
drivers/media/video/Kconfig \
drivers/media/common/tuners/Kconfig \
drivers/media/IR/keymaps/Kconfig \
drivers/media/IR/Kconfig \
drivers/media/common/Kconfig \
drivers/media/Kconfig \
drivers/regulator/Kconfig \
drivers/mfd/Kconfig \
drivers/ssb/Kconfig \
drivers/watchdog/Kconfig \
drivers/thermal/Kconfig \
drivers/hwmon/Kconfig \
drivers/power/Kconfig \
drivers/w1/slaves/Kconfig \
drivers/w1/masters/Kconfig \
drivers/w1/Kconfig \
drivers/gpio/Kconfig \
drivers/pps/clients/Kconfig \
drivers/pps/Kconfig \
drivers/spi/Kconfig \
drivers/i2c/busses/Kconfig \
drivers/i2c/algos/Kconfig \
drivers/i2c/Kconfig \
drivers/s390/char/Kconfig \
drivers/char/tpm/Kconfig \
drivers/char/pcmcia/Kconfig \
drivers/char/hw_random/Kconfig \
drivers/char/ipmi/Kconfig \
drivers/serial/Kconfig \
drivers/char/Kconfig \
drivers/input/gameport/Kconfig \
drivers/input/serio/Kconfig \
drivers/input/misc/Kconfig \
drivers/input/touchscreen/Kconfig \
drivers/input/tablet/Kconfig \
drivers/input/joystick/iforce/Kconfig \
drivers/input/joystick/Kconfig \
drivers/input/mouse/Kconfig \
drivers/input/keyboard/Kconfig \
drivers/input/Kconfig \
drivers/telephony/Kconfig \
drivers/isdn/hardware/mISDN/Kconfig \
drivers/isdn/mISDN/Kconfig \
drivers/isdn/hysdn/Kconfig \
drivers/isdn/gigaset/Kconfig \
drivers/isdn/hardware/eicon/Kconfig \
drivers/isdn/hardware/avm/Kconfig \
drivers/isdn/hardware/Kconfig \
drivers/isdn/capi/Kconfig \
drivers/isdn/act2000/Kconfig \
drivers/isdn/sc/Kconfig \
drivers/isdn/pcbit/Kconfig \
drivers/isdn/icn/Kconfig \
drivers/isdn/hisax/Kconfig \
drivers/isdn/i4l/Kconfig \
drivers/isdn/Kconfig \
drivers/net/caif/Kconfig \
drivers/s390/net/Kconfig \
drivers/ieee802154/Kconfig \
drivers/atm/Kconfig \
drivers/net/wan/Kconfig \
drivers/net/pcmcia/Kconfig \
drivers/net/usb/Kconfig \
drivers/net/wimax/i2400m/Kconfig \
drivers/net/wimax/Kconfig \
drivers/net/wireless/zd1211rw/Kconfig \
drivers/net/wireless/wl12xx/Kconfig \
drivers/net/wireless/rt2x00/Kconfig \
drivers/net/wireless/p54/Kconfig \
drivers/net/wireless/orinoco/Kconfig \
drivers/net/wireless/libertas/Kconfig \
drivers/net/wireless/iwmc3200wifi/Kconfig \
drivers/net/wireless/iwlwifi/Kconfig \
drivers/net/wireless/ipw2x00/Kconfig \
drivers/net/wireless/hostap/Kconfig \
drivers/net/wireless/bcm4329/Kconfig \
drivers/net/wireless/b43legacy/Kconfig \
drivers/net/wireless/b43/Kconfig \
drivers/net/wireless/ath/ar9170/Kconfig \
drivers/net/wireless/ath/ath9k/Kconfig \
drivers/net/wireless/ath/ath5k/Kconfig \
drivers/net/wireless/ath/Kconfig \
drivers/net/wireless/rtl818x/Kconfig \
drivers/net/wireless/Kconfig \
drivers/net/tokenring/Kconfig \
drivers/net/benet/Kconfig \
drivers/net/sfc/Kconfig \
drivers/net/stmmac/Kconfig \
drivers/net/ixp2000/Kconfig \
drivers/net/octeon/Kconfig \
drivers/net/fs_enet/Kconfig \
drivers/net/ibm_newemac/Kconfig \
drivers/net/tulip/Kconfig \
drivers/net/arm/Kconfig \
drivers/net/phy/Kconfig \
drivers/net/arcnet/Kconfig \
drivers/net/Kconfig \
drivers/macintosh/Kconfig \
drivers/message/i2o/Kconfig \
drivers/ieee1394/Kconfig \
drivers/firewire/Kconfig \
drivers/message/fusion/Kconfig \
drivers/md/Kconfig \
drivers/ata/Kconfig \
drivers/scsi/osd/Kconfig \
drivers/scsi/device_handler/Kconfig \
drivers/scsi/pcmcia/Kconfig \
drivers/scsi/arm/Kconfig \
drivers/scsi/qla4xxx/Kconfig \
drivers/scsi/qla2xxx/Kconfig \
drivers/scsi/mpt2sas/Kconfig \
drivers/scsi/megaraid/Kconfig.megaraid \
drivers/scsi/mvsas/Kconfig \
drivers/scsi/aic94xx/Kconfig \
drivers/scsi/aic7xxx/Kconfig.aic79xx \
drivers/scsi/aic7xxx/Kconfig.aic7xxx \
drivers/scsi/be2iscsi/Kconfig \
drivers/scsi/bnx2i/Kconfig \
drivers/scsi/cxgb3i/Kconfig \
drivers/scsi/libsas/Kconfig \
drivers/scsi/Kconfig \
drivers/ide/Kconfig \
drivers/misc/iwmc3200top/Kconfig \
drivers/misc/cb710/Kconfig \
drivers/misc/eeprom/Kconfig \
drivers/misc/c2port/Kconfig \
drivers/misc/Kconfig \
drivers/s390/block/Kconfig \
drivers/block/drbd/Kconfig \
drivers/block/paride/Kconfig \
drivers/block/Kconfig \
drivers/pnp/pnpacpi/Kconfig \
drivers/pnp/pnpbios/Kconfig \
drivers/pnp/isapnp/Kconfig \
drivers/pnp/Kconfig \
drivers/parport/Kconfig \
drivers/of/Kconfig \
drivers/mtd/ubi/Kconfig.debug \
drivers/mtd/ubi/Kconfig \
drivers/mtd/lpddr/Kconfig \
drivers/mtd/onenand/Kconfig \
drivers/mtd/nand/Kconfig \
drivers/mtd/devices/Kconfig \
drivers/mtd/maps/Kconfig \
drivers/mtd/chips/Kconfig \
drivers/mtd/Kconfig \
drivers/connector/Kconfig \
drivers/base/Kconfig \
drivers/Kconfig \
net/caif/Kconfig \
net/9p/Kconfig \
net/rfkill/Kconfig \
net/wimax/Kconfig \
net/mac80211/Kconfig \
net/wireless/Kconfig \
net/rxrpc/Kconfig \
drivers/bluetooth/Kconfig \
net/bluetooth/hidp/Kconfig \
net/bluetooth/cmtp/Kconfig \
net/bluetooth/bnep/Kconfig \
net/bluetooth/rfcomm/Kconfig \
net/bluetooth/Kconfig \
drivers/net/irda/Kconfig \
net/irda/ircomm/Kconfig \
net/irda/irnet/Kconfig \
net/irda/irlan/Kconfig \
net/irda/Kconfig \
drivers/net/can/usb/Kconfig \
drivers/net/can/sja1000/Kconfig \
drivers/net/can/mscan/Kconfig \
drivers/net/can/Kconfig \
net/can/Kconfig \
drivers/net/hamradio/Kconfig \
net/ax25/Kconfig \
net/dcb/Kconfig \
net/sched/Kconfig \
net/ieee802154/Kconfig \
net/phonet/Kconfig \
net/wanrouter/Kconfig \
net/econet/Kconfig \
net/lapb/Kconfig \
net/x25/Kconfig \
drivers/net/appletalk/Kconfig \
net/ipx/Kconfig \
net/llc/Kconfig \
net/decnet/Kconfig \
net/8021q/Kconfig \
net/dsa/Kconfig \
net/bridge/Kconfig \
net/802/Kconfig \
net/l2tp/Kconfig \
net/atm/Kconfig \
net/tipc/Kconfig \
net/rds/Kconfig \
net/sctp/Kconfig \
net/dccp/ccids/Kconfig \
net/dccp/Kconfig \
net/bridge/netfilter/Kconfig \
net/decnet/netfilter/Kconfig \
net/ipv6/netfilter/Kconfig \
net/ipv4/netfilter/Kconfig \
net/netfilter/ipvs/Kconfig \
net/netfilter/Kconfig \
net/netlabel/Kconfig \
net/ipv6/Kconfig \
net/ipv4/Kconfig \
net/iucv/Kconfig \
net/xfrm/Kconfig \
net/unix/Kconfig \
net/packet/Kconfig \
net/Kconfig \
fs/Kconfig.binfmt \
drivers/pci/hotplug/Kconfig \
drivers/pcmcia/Kconfig \
drivers/mca/Kconfig \
drivers/eisa/Kconfig \
drivers/pci/Kconfig \
drivers/pci/pcie/aer/Kconfig.debug \
drivers/pci/pcie/aer/Kconfig \
drivers/pci/pcie/Kconfig \
drivers/idle/Kconfig \
drivers/cpuidle/Kconfig \
drivers/cpufreq/Kconfig \
arch/x86/kernel/cpu/cpufreq/Kconfig \
drivers/sfi/Kconfig \
drivers/acpi/apei/Kconfig \
drivers/acpi/Kconfig \
kernel/power/Kconfig \
kernel/Kconfig.hz \
mm/Kconfig \
kernel/Kconfig.preempt \
arch/x86/Kconfig.cpu \
arch/x86/lguest/Kconfig \
arch/x86/xen/Kconfig \
kernel/time/Kconfig \
kernel/Kconfig.freezer \
kernel/Kconfig.locks \
block/Kconfig.iosched \
block/Kconfig \
kernel/gcov/Kconfig \
arch/Kconfig \
usr/Kconfig \
init/Kconfig \
arch/x86/Kconfig
include/config/auto.conf: \
$(deps_config)
ifneq "$(KERNELVERSION)" "2.6.35.14"
include/config/auto.conf: FORCE
endif
ifneq "$(ARCH)" "i386"
include/config/auto.conf: FORCE
endif
$(deps_config): ;
| gtvhacker/Sony-x86-kexec | include/config/auto.conf.cmd | bat | gpl-2.0 | 15,854 |
@echo off
set "WD=%__CD__%"
if NOT EXIST "%WD%msys-2.0.dll" set "WD=%~dp0usr\bin\"
rem To activate windows native symlinks uncomment next line
rem set MSYS=winsymlinks:nativestrict
rem Set debugging program for errors
rem set MSYS=error_start:%WD%../../mingw64/bin/qtcreator.exe^|-debug^|^<process-id^>
rem To export full current PATH from environment into MSYS2 use '-use-full-path' parameter
rem or uncomment next line
rem set MSYS2_PATH_TYPE=inherit
:checkparams
rem Shell types
if "x%~1" == "x-msys" shift& set MSYSTEM=MSYS& goto :checkparams
if "x%~1" == "x-msys2" shift& set MSYSTEM=MSYS& goto :checkparams
if "x%~1" == "x-mingw32" shift& set MSYSTEM=MINGW32& goto :checkparams
if "x%~1" == "x-mingw64" shift& set MSYSTEM=MINGW64& goto :checkparams
if "x%~1" == "x-mingw" shift& (
if exist "%WD%..\..\mingw64" (set MSYSTEM=MINGW64) else (set MSYSTEM=MINGW32)
)& goto :checkparams
rem Console types
if "x%~1" == "x-consolez" shift& set MSYSCON=console.exe& goto :checkparams
if "x%~1" == "x-mintty" shift& set MSYSCON=mintty.exe& goto :checkparams
if "x%~1" == "x-conemu" shift& set MSYSCON=conemu& goto :checkparams
if "x%~1" == "x-defterm" shift& set MSYSCON=defterm& goto :checkparams
rem Other parameters
if "x%~1" == "x-use-full-path" shift& set MSYS2_PATH_TYPE=inherit& goto :checkparams
rem Autodetect shell type if not specified
if not defined MSYSTEM (
if exist "%WD%..\..\mingw64" (
set MSYSTEM=MINGW64
) else if exist "%WD%..\..\mingw32" (
set MSYSTEM=MINGW32
) else (set MSYSTEM=MSYS)
)
rem Setup proper title
if "%MSYSTEM%" == "MSYS" (
set CONTITLE=MSys2
) else if "%MSYSTEM%" == "MINGW32" (
set "CONTITLE=MinGW x32"
) else if "%MSYSTEM%" == "MINGW64" (
set "CONTITLE=MinGW x64"
)
if "x%MSYSCON%" == "xmintty.exe" goto startmintty
if "x%MSYSCON%" == "xconsole.exe" goto startconsolez
if "x%MSYSCON%" == "xconemu" goto startconemu
if "x%MSYSCON%" == "xdefterm" goto startsh
if NOT EXIST "%WD%mintty.exe" goto startsh
set MSYSCON=mintty.exe
:startmintty
start "%CONTITLE%" "%WD%mintty" -i /msys2.ico /usr/bin/bash --login %1 %2 %3 %4 %5 %6 %7 %8 %9
exit /b %ERRORLEVEL%
:startconsolez
cd %WD%..\lib\ConsoleZ
start console -t "%CONTITLE%" -r %1 %2 %3 %4 %5 %6 %7 %8 %9
exit /b %ERRORLEVEL%
:startconemu
call :conemudetect || (
echo ConEmu not found. Exiting. 1>&2
exit /b 1
)
start "%CONTITLE%" "%ComEmuCommand%" /Here /Icon "%WD%..\..\msys2.ico" /cmd %WD%bash --login %1 %2 %3 %4 %5 %6 %7 %8 %9
exit /b %ERRORLEVEL%
:startsh
set MSYSCON=
start "%CONTITLE%" "%WD%bash" --login %1 %2 %3 %4 %5 %6 %7 %8 %9
exit /b %ERRORLEVEL%
:EOF
exit /b 0
:conemudetect
set ComEmuCommand=
if defined ConEmuDir (
if exist "%ConEmuDir%\ConEmu64.exe" (
set "ComEmuCommand=%ConEmuDir%\ConEmu64.exe"
set MSYSCON=conemu64.exe
) else if exist "%ConEmuDir%\ConEmu.exe" (
set "ComEmuCommand=%ConEmuDir%\ConEmu.exe"
set MSYSCON=conemu.exe
)
)
if not defined ComEmuCommand (
ConEmu64.exe /Exit 2>nul && (
set ComEmuCommand=ConEmu64.exe
set MSYSCON=conemu64.exe
) || (
ConEmu.exe /Exit 2>nul && (
set ComEmuCommand=ConEmu.exe
set MSYSCON=conemu.exe
)
)
)
if not defined ComEmuCommand (
FOR /F "tokens=*" %%A IN ('reg.exe QUERY "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\ConEmu64.exe" /ve 2^>nul ^| find "REG_SZ"') DO (
set "ComEmuCommand=%%A"
)
if defined ComEmuCommand (
call set "ComEmuCommand=%%ComEmuCommand:*REG_SZ =%%"
set MSYSCON=conemu64.exe
) else (
FOR /F "tokens=*" %%A IN ('reg.exe QUERY "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\ConEmu.exe" /ve 2^>nul ^| find "REG_SZ"') DO (
set "ComEmuCommand=%%A"
)
if defined ComEmuCommand (
call set "ComEmuCommand=%%ComEmuCommand:*REG_SZ =%%"
set MSYSCON=conemu.exe
)
)
)
if not defined ComEmuCommand exit /b 2
exit /b 0
| huettner94/MSYS2-packages | filesystem/start_shell.cmd | bat | bsd-3-clause | 3,855 |
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" %pTestFiles% /logger:trx /inIsolation | Philur/CABKato | kato/Jenkins/runtests.bat | bat | gpl-2.0 | 160 |
@echo on
AppVeyor\MySqlInstall.bat
| ogmage78/ACE | AppVeyor/AppVeyorAfterCompile.bat | bat | gpl-3.0 | 35 |
start "runas /user:administrator " cmd /c " C: && cd C:\Users\Obaida\Desktop\AnalyzerVersions\BinaryFileAnalyzerDiamond_V1\TempClassification\bin\Debug\TSDP && TSDP Auto --in C:\Users\Obaida\Desktop\AnalyzerVersions\BinaryFileAnalyzerDiamond_V1\TempClassification\bin\Debug\TSDP\BinFiles\test_10.BIN --out C:\Users\Obaida\Desktop\AnalyzerVersions\BinaryFileAnalyzerDiamond_V1\TempClassification\bin\Debug\TSDP\TextFiles\test_10_Count.txt --settings C:\Users\Obaida\Desktop\AnalyzerVersions\BinaryFileAnalyzerDiamond_V1\TempClassification\bin\Debug\TSDP\SettingFiles\CGSET.NI --numLanes 2 --classification --twoWay --sensorSpacing 48 "
| Anonymous01012014/tcms | application/controllers/TSDP/BatchFiles/5_15_2013_10_49_01_AM.bat | bat | gpl-3.0 | 637 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\spreads.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\spreads.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| tfmorris/spreads | doc/make.bat | bat | agpl-3.0 | 6,461 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PyPuppetDB.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PyPuppetDB.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| jcastillocano/pypuppetdb | docs/make.bat | bat | apache-2.0 | 5,104 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\..\..\[email protected]@mime\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\..\..\[email protected]@mime\cli.js" %*
) | dravenxiaokai/movie2 | node_modules/serve-static/node_modules/send/node_modules/.bin/mime.cmd | bat | mit | 200 |
@echo off
REM ---------------------------------------------------------------------------
REM Copyright 2005-2016 WSO2, Inc. http://www.wso2.org
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
rem ---------------------------------------------------------------------------
rem Script for runnig the WSO2 CEP Server samples
rem
rem Environment Variable Prequisites
rem
rem CARBON_HOME Home of CARBON installation. If not set I will try
rem to figure it out.
rem
rem JAVA_HOME Must point at your Java Development Kit installation.
rem
rem JAVA_OPTS (Optional) Java runtime options used when the commands
rem is executed.
rem ---------------------------------------------------------------------------
SET cn=1
set CMD=%*
:initial
if "%1"=="-sn" goto sname
if "%1"=="" goto no_sample
shift
goto initial
:sname
shift
set cn=%1
if "%1"=="" goto invalid_number
if "%1"=="0" goto run
SET /A UserInputVal="%cn%"*1
IF %UserInputVal% EQU 0 GOTO invalid_number
goto copyfile
:lreturn
shift
goto initial
:run
wso2server.bat %CMD% -Daxis2.repo=../samples/cep/artifacts/%cn%
rem ----------- loading spark specific variables
call %CARBON_HOME%\bin\load-spark-env-vars.bat
"%JAVA_HOME%\bin\java" %CMD_LINE_ARGS% org.wso2.carbon.bootstrap.Bootstrap %CMD%
if "%ERRORLEVEL%"=="121" goto run
goto done
:copyfile
if not exist ..\samples\cep\artifacts\%cn%\webapps ( mkdir ..\samples\cep\artifacts\%cn%\webapps > nul
if exist ..\repository\deployment\server\webapps\inputwebsocket.war ( copy ..\repository\deployment\server\webapps\inputwebsocket.war ..\samples\cep\artifacts\%cn%\webapps\ > nul )
if exist ..\repository\deployment\server\webapps\outputwebsocket.war ( copy ..\repository\deployment\server\webapps\outputwebsocket.war ..\samples\cep\artifacts\%cn%\webapps\ > nul )
if exist ..\repository\deployment\server\webapps\shindig.war ( copy ..\repository\deployment\server\webapps\shindig.war ..\samples\cep\artifacts\%cn%\webapps\ > nul )
) else ( if not exist ..\samples\cep\artifacts\%cn%\webapps\inputwebsocket.war ( copy ..\repository\deployment\server\webapps\inputwebsocket.war ..\samples\cep\artifacts\%cn%\webapps\ > nul )
if not exist ..\samples\cep\artifacts\%cn%\webapps\outputwebsocket.war ( copy ..\repository\deployment\server\webapps\outputwebsocket.war ..\samples\cep\artifacts\%cn%\webapps\ > nul )
if not exist ..\samples\cep\artifacts\%cn%\webapps\shindig.war ( copy ..\repository\deployment\server\webapps\shindig.war ..\samples\cep\artifacts\%cn%\webapps\ > nul ) )
if not exist ..\samples\cep\artifacts\%cn%\jaggeryapps ( mkdir ..\samples\cep\artifacts\%cn%\jaggeryapps\portal > nul
xcopy ..\repository\deployment\server\jaggeryapps\portal ..\samples\cep\artifacts\%cn%\jaggeryapps\portal\ /s /q > nul
rmdir ..\samples\cep\artifacts\%cn%\jaggeryapps\portal\store /s /q > nul
mkdir ..\samples\cep\artifacts\%cn%\jaggeryapps\portal\store\carbon.super > nul
xcopy ..\repository\deployment\server\jaggeryapps\portal\store\carbon.super ..\samples\cep\artifacts\%cn%\jaggeryapps\portal\store\carbon.super /s /q > nul
rmdir ..\samples\cep\artifacts\%cn%\jaggeryapps\portal\store\carbon.super\fs\gadget /s /q > nul
mkdir ..\samples\cep\artifacts\%cn%\jaggeryapps\portal\store\carbon.super\fs\gadget > nul)
goto run
:invalid_number
echo "*** Specified sample number is not a number *** Please specify a valid sample number with the -sn option"
echo "Example, to run sample 1: wso2cep-samples.bat -sn 1"
goto done
:no_sample
echo "*** Sample number to be started is not specified *** Please specify a sample number to be started with the -sn option"
echo "Example, to run sample 1: wso2cep-samples.bat -sn 1"
goto done
:done | Amutheezan/product-das | modules/distribution/src/bin/wso2cep-samples.bat | bat | apache-2.0 | 4,231 |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
nc:asterix_nc1 /promote 3 asterix_nc1 | ecarm002/incubator-asterixdb | asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/replication/mem_component_recovery/mem_component_recovery.8.sto.cmd | bat | apache-2.0 | 845 |
@echo off & setlocal EnableDelayedExpansion
for /f "delims=" %%i in ('"dir /a/s/b/on *.*"') do (
set file=%%~fi
set file=!file:/=/!
echo !file! >> ·¾¶.txt
) | wangyongtan/H5 | 2018/LayaBoxProjectWeb/1.FanSheHu/res/model/WaDing/list.bat | bat | mit | 162 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.