summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8e6447d1f3f604a159fdf030ed674f02d6284009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS	= -Wall -O2 -g

ifdef KERNEL_HEADERS
	CFLAGS += -I$(KERNEL_HEADERS)
endif

EXE = mboxd

all: $(EXE)

$(EXE): common.o

mboxd: CFLAGS += -DPREFIX="\"MBOXD\""

clean:
	rm -rf *.o $(EXE)
OpenPOWER on IntegriCloud