summaryrefslogtreecommitdiff
path: root/polux/tools/genNVRAM/Makefile
blob: ad033e2eb46f01259275d90df9523056e239ac17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TOPDIR=../..
LINUX_DIR=$(TOPDIR)/linux-2.6.10
CFLAGS= -I$(TOPDIR)/include -I$(LINUX_DIR)/include -D__LINUX__

all: genNVRAM

debug: CFLAGS += -g
debug: all

genNVRAM: genNVRAM.c
	$(CC) $(CFLAGS) -o $@ $<


clean:
	@rm *.o *~ genNVRAM -f