From 84aa70344776694098aa3bbd4eb476718223d3dc Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 8 Mar 2012 18:14:40 +0100 Subject: [PATCH] vpi: support extra include directories --- vpi/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vpi/Makefile b/vpi/Makefile index ba6abe9f..9150f253 100644 --- a/vpi/Makefile +++ b/vpi/Makefile @@ -1,12 +1,13 @@ CC=clang INSTDIR=/usr/lib/ivl +INCDIRS= OBJ=ipc.o main.o all: migensim.vpi %.o: %.c - $(CC) -fPIC -Wall -O2 -c -o $@ $< + $(CC) -fPIC -Wall -O2 -c $(INCDIRS) -o $@ $< migensim.vpi: $(OBJ) $(CC) -shared -o $@ $(OBJ) -lvpi -- 2.30.2