User Space:swapout (this is a rebase commit to merge into development)
This commit is contained in:
19
test/user_space/swapout/Makefile
Normal file
19
test/user_space/swapout/Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
PPOSDIR=/home/iizuka/mckernel
|
||||
MPIDIR=/usr/lib64/mpich-3.2
|
||||
MPIBINDIR=$(MPIDIR)/bin
|
||||
MPILIBDIR=$(MPIDIR)/lib
|
||||
CC=gcc
|
||||
|
||||
LIBDIR=$(PPOSDIR)/lib
|
||||
LDFLAGS=-L$(LIBDIR) -Wl,-rpath=$(LIBDIR) -Wl,-rpath,$(MPILIBDIR)
|
||||
CFLAGS= -I$(PPOSDIR)/include
|
||||
|
||||
TARGETS= swaptest
|
||||
|
||||
all:: $(TARGETS)
|
||||
|
||||
swaptest: swaptest.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $@.c
|
||||
|
||||
clean::
|
||||
rm -f $(TARGETS)
|
||||
Reference in New Issue
Block a user