X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/4bea7daf0e70a1540b8533c8253c197bb282416e..3116da4b2f512f121bfc7b89e948de25a7daf2cc:/aseg/Makefile diff --git a/aseg/Makefile b/aseg/Makefile index 5bef71f..76eaa45 100644 --- a/aseg/Makefile +++ b/aseg/Makefile @@ -1,10 +1,48 @@ +CC=gcc +CFLAGS=-I../include -I../include/raw -I../lwip/src/include -I../lwip/src/include/ipv4 -nostdlib -nostdinc -fno-builtin -D__RAW__ -Wall -Werror -pedantic -ansi -std=gnu99 + +LWIP_OBJS = \ + ../lwip/src/core/dhcp.o \ + ../lwip/src/core/dns.o \ + ../lwip/src/core/init.o \ + ../lwip/src/core/ipv4/autoip.o \ + ../lwip/src/core/ipv4/icmp.o \ + ../lwip/src/core/ipv4/igmp.o \ + ../lwip/src/core/ipv4/inet.o \ + ../lwip/src/core/ipv4/inet_chksum.o \ + ../lwip/src/core/ipv4/ip.o \ + ../lwip/src/core/ipv4/ip_addr.o \ + ../lwip/src/core/ipv4/ip_frag.o \ + ../lwip/src/core/mem.o \ + ../lwip/src/core/memp.o \ + ../lwip/src/core/netif.o \ + ../lwip/src/core/pbuf.o \ + ../lwip/src/core/raw.o \ + ../lwip/src/core/stats.o \ + ../lwip/src/core/sys.o \ + ../lwip/src/core/tcp.o \ + ../lwip/src/core/tcp_in.o \ + ../lwip/src/core/tcp_out.o \ + ../lwip/src/core/udp.o \ + ../lwip/src/netif/etharp.o \ + ../lwip/src/netif/ethernetif.o + +OBJS=counter.o firstrun.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o \ + ../ich2/smram-ich2.o ../ich2/smi.o vga-overlay.o packet.o \ + ../lib/sprintf.o ../lib/doprnt.o ../pci/pci.o ../net/net.o \ + ../ich2/ich2-timer.o ../pci/pci-bother.o ../net/3c90x.o keyboard.o \ + ../lib/serial.o $(LWIP_OBJS) + all: aseg.elf -aseg.bin: aseg.asm - nasm -o aseg.bin aseg.asm +aseg.elf: aseg.lds aseg.o $(OBJS) + ld -o aseg.elf -T aseg.lds $(OBJS) + +clean: + rm -f $(OBJS) aseg.elf aseg.bin aseg.o -aseg.o: aseg.bin - objcopy -I binary -B i386 -O elf32-i386 aseg.bin aseg.o -aseg.elf: aseg.bin aseg.lds counter.o - ld -o aseg.elf -T aseg.lds counter.o +%.o: %.asm + nasm -o $@.bin $< + objcopy -I binary -B i386 -O elf32-i386 $@.bin $@ + rm -f $@.bin