diff options
| author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-02 23:17:43 +0000 |
|---|---|---|
| committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-02 23:17:43 +0000 |
| commit | 026b1ef0a8f545a2b412015443a0a4db78b23c53 (patch) | |
| tree | 855df2373eccb8c4cf99fa780bbf5ec7edbb5d31 /target/linux/etrax-2.6/image/e100boot/src/sbl/Makefile.in | |
| parent | 8366dfac71c976acb6d772ec9014026cafab8182 (diff) | |
the etrax bootloader tools source was added on initial merge, it is now sitting on the acme site, source should not be in this folder
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7465 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/etrax-2.6/image/e100boot/src/sbl/Makefile.in')
| -rw-r--r-- | target/linux/etrax-2.6/image/e100boot/src/sbl/Makefile.in | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/target/linux/etrax-2.6/image/e100boot/src/sbl/Makefile.in b/target/linux/etrax-2.6/image/e100boot/src/sbl/Makefile.in deleted file mode 100644 index bdefd7151..000000000 --- a/target/linux/etrax-2.6/image/e100boot/src/sbl/Makefile.in +++ /dev/null @@ -1,76 +0,0 @@ -# -# Makefile for e100boot, sbl side. -# -# $Id: Makefile.in,v 1.21 2003/11/21 11:38:30 pkj Exp $ -# - -VPATH := .:../cbl - -CC = @CC@ - -AXIS_USABLE_LIBS = UCLIBC GLIBC --include $(AXIS_TOP_DIR)/tools/build/Rules.axis - -CFLAGS += -I. -I../cbl/src @CFLAGS@ -I../libpcap-0.4/ -I../libpcap-0.4/bpf/ -Wall -Wmissing-prototypes -Wno-unused -LDFLAGS = -LDLIBS = -L../libpcap-0.4/ @LIBS@ -LDLIBS = -LIBPCAP = ../libpcap-0.4/libpcap.a - -IMAGES := ../cbl/net/net.ima ../cbl/net_noleds/net_noleds.ima \ - ../cbl/ser/ser.ima ../cbl/ser_noleds/ser_noleds.ima - -AUTOSRCS := $(addsuffix .c, $(subst .ima,_ima,$(notdir $(IMAGES)))) - -OBJS := common.o network.o serial.o -DEPS := $(addprefix deps/, $(subst .o,.d,$(OBJS))) - -STRIP ?= strip - -all: conf.h e100boot e100boot.stripped - -depend: $(DEPS) - -Makefile: Makefile.in - @echo -e "\n### New Makefile.in detected, regenerating Makefile..." - ./configure - -e100boot: common.o boot_images.o serial.o network.o $(LIBPCAP) - @echo -e '\n### Finally... Compiling e100boot.' - $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ - -e100boot.stripped: e100boot - cp $< $@ - $(STRIP) --strip-unneeded $@ - -boot_images.o: boot_images.c boot_images.h $(AUTOSRCS) - $(CC) -c $(CFLAGS) $< -o $@ - -conf.h: - ./configure - -reconf: - ./configure --cache=/dev/null - -clean: - rm -rf e100boot Makefile conf.h config.log config.cache config.status deps *.ima *.o *_ima.c* *~ - -$(IMAGES): - @echo -e '\n### Making cbl boot images (*.ima)...' - $(MAKE) -C ../cbl - -ifneq ($(MAKECMDGOALS),clean) --include $(DEPS) -endif - -deps/%.d: %.c - @[ -d deps ] || mkdir deps - $(CC) -M $(CFLAGS) $< > $@ - -deps/%.d: %.S - @[ -d deps ] || mkdir deps - $(CC) -M $(CFLAGS) $< > $@ - -%_ima.c: %.ima - @echo -e "### Creating $@ from image $<" - @./cconv $*_ima < $< > $@ |
