Files
cpp-project-template/third_party/microprofile/distorm/examples/linux/Makefile

16 lines
212 B
Makefile
Raw Normal View History

2025-08-25 11:21:22 +08:00
#
# diStorm (Linux Port) / Demo Application Makefile
#
TARGET = disasm
CC = gcc
CFLAGS = -Wall -O2 -o
all: disasm
disasm:
${CC} ${CFLAGS} ${TARGET} main.c ../../distorm3.a
clean:
/bin/rm -rf *.o ${TARGET}