]> Joshua Wise's Git repositories - netwatch.git/blobdiff - netwatch/Makefile
Move aseg-paging to netwatch/
[netwatch.git] / netwatch / Makefile
diff --git a/netwatch/Makefile b/netwatch/Makefile
new file mode 100644 (file)
index 0000000..1d7621a
--- /dev/null
@@ -0,0 +1,80 @@
+CC=gcc-4.3
+CFLAGS=-I../include -I../include/raw \
+       -I../lwip/src/include -I../lwip/src/include/ipv4 \
+       -nostdlib -nostdinc -fno-builtin -D__RAW__ \
+       -Wall -Werror -std=gnu99 -Wstrict-aliasing=2 \
+       -O1 -fno-merge-constants -fno-strict-aliasing
+
+STUBOBJS=entry.o pagingstub-asm.o pagingstub.o
+
+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 = ../ich2/smi.o \
+       ../ich2/smram-ich2.o \
+       ../ich2/ich2-timer.o \
+       ../pci/pci.o \
+       ../pci/pci-raw.o \
+       ../pci/pci-bother.o \
+       ../net/net.o \
+       ../net/http/fs.o \
+       ../net/http/httpd.o \
+       ../net/3c90x.o \
+       ../net/rfb.o \
+       ../video/tnt2.o \
+       ../video/fb.o \
+       ../video/generic.o \
+       ../video/text.o \
+       drivers.o \
+       ../lib/minilib.o \
+       ../lib/doprnt.o \
+       ../lib/sprintf.o \
+       ../lib/console.o \
+       ../lib/serial.o \
+       ../lib/crc32.o \
+       keyboard.o \
+       packet.o \
+       $(LWIP_OBJS) \
+       smi.o \
+       vga-overlay.o \
+       main.o \
+       traps.o \
+       firstrun.o
+
+
+all: aseg.elf
+
+aseg.elf: aseg.lds $(STUBOBJS) $(OBJS)
+       ld -o aseg.elf -T aseg.lds $(STUBOBJS) $(OBJS)
+
+clean:
+       rm -f $(OBJS) aseg.elf entry.bin entry.o
+
+%.o: %.asm
+       nasm -o $@.bin $<
+       objcopy -I binary -B i386 -O elf32-i386 $@.bin $@
+       rm -f $@.bin
This page took 0.023632 seconds and 4 git commands to generate.