mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-17 11:47:11 +08:00
32 lines
862 B
Makefile
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
|