|
|
qemu 1.1.1
# ***************************************************************************** # * Copyright (c) 2007, 2011 IBM Corporation # * All rights reserved. # * This program and the accompanying materials # * are made available under the terms of the BSD License # * which accompanies this distribution, and is available at # * http://www.opensource.org/licenses/bsd-license.php # * # * Contributors: # * IBM Corporation - initial implementation # ****************************************************************************/ ifndef TOP TOP = $(shell while ! test -e make.rules; do cd .. ; done; pwd) export TOP endif include $(TOP)/make.rules CPPFLAGS = -I. -I$(TOP)/include -I$(TOP)/clients/net-snk/include \ -I$(TOP)/lib/libc/include -I../common SRCS = e1k.c COMMONOBJS = ../common/module_entry.o OBJS += $(COMMONOBJS) $(SRCS:.c=.o) all: Makefile.dep net_e1k.elf net_e1k.elf: $(OBJS) $(TOP)/lib/libc.a $(LD) $(LDFLAGS) $^ -o $@ -T ../common/module.lds -N -q $(STRIP) --strip-unneeded $@ # A rule for making the object files in the common directory: ../common/%.o: ../common/%.c $(MAKE) -C ../common all clean: $(RM) -f *.o *.a *.i *.elf distclean : clean rm -f Makefile.dep # Rules for creating the dependency file: depend: $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SRCS) > Makefile.dep Makefile.dep: $(MAKE) depend # Include dependency file if available: ifneq (,$(wildcard Makefile.dep)) include Makefile.dep endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.