]> Joshua Wise's Git repositories - netwatch.git/blame_incremental - tools/Makefile
Put BSS clearing in firstrun
[netwatch.git] / tools / Makefile
... / ...
CommitLineData
1CFLAGS=-I../include
2CC=gcc
3SMRAM_ICH2_OBJS=smram-linux-tool.o ../pci/pci-linux.o ../ich2/smram-ich2.noraw.o
4PCI_OBJS=pci.o ../pci/pci-linux.o
5
6all: smram-ich2 port pci
7
8%.noraw.o: %.c
9 gcc $(CFLAGS) -c -o $@ $<
10
11smram-ich2: $(SMRAM_ICH2_OBJS)
12 gcc $(CFLAGS) -o smram-ich2 $(SMRAM_ICH2_OBJS)
13
14port: port.o
15 gcc -o port port.o
16
17pci: $(PCI_OBJS)
18 gcc $(CFLAGS) -o pci $(PCI_OBJS)
19
20clean:
21 rm -f $(SMRAM_ICH2_OBJS) smram-ich2
This page took 0.022172 seconds and 4 git commands to generate.