Files
MemProcFS/vmm_example/Makefile
2021-09-25 20:58:59 +02:00

32 lines
862 B
Makefile

#
# NOTE! PACKAGE DEPENDENCY ON LeechCore:
# The build script require leechcore.so built from the leechcore project
# which is found at https://github.com/ufrisk/LeechCore to build. This
# file is assumed to exist in either of the directories:
# . (current), ../files, ../../LeechCore*/files
#
CC=gcc
CFLAGS=-I. -I../includes -D LINUX -L. -l:leechcore.so -l:vmm.so -pthread
#CFLAGS += -g -O0
LDFLAGS=-Wl,-rpath,'$$ORIGIN' -ldl
DEPS =
OBJ = vmmdll_example.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
vmm_example: $(OBJ)
cp ../files/leechcore.so . || cp ../../LeechCore*/files/leechcore.so . || true
cp ../files/vmm.so . |true
$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)
mv vmm_example ../files/
rm -f *.o || true
rm -f */*.o || true
rm -f *.so || true
true
clean:
rm -f *.o || true
rm -f *.so || true
rm -f vmm_example || true