You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
241 B
13 lines
241 B
3 years ago
|
# Sample code for Keystone Assembler Engine (www.keystone-engine.org).
|
||
|
# By Nguyen Anh Quynh, 2016
|
||
|
|
||
|
.PHONY: all clean
|
||
|
|
||
|
KEYSTONE_LDFLAGS = -lkeystone -lstdc++ -lm
|
||
|
|
||
|
all:
|
||
|
${CC} -o sample sample.c ${KEYSTONE_LDFLAGS}
|
||
|
|
||
|
clean:
|
||
|
rm -rf *.o sample
|