Skip to content
Snippets Groups Projects
Commit 88028e29 authored by y0no's avatar y0no
Browse files

Fix makefile

parent 9c4b2ac5
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ rwildcard = $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(sub
ASM := rgbasm
LINKER := rgblink
FIX := rgbfix
EMULATOR := bgb64
BUILD_DIR := build
PROJECT_NAME ?= crackme
OUTPUT := $(BUILD_DIR)/$(PROJECT_NAME)
......@@ -33,6 +34,6 @@ clean:
rm -rf $(BUILD_DIR)
exec:
wine ../../BGB/bgb64.exe ${BUILD_DIR}/${PROJECT_NAME}.gb
${EMULATOR} ${BUILD_DIR}/${PROJECT_NAME}.gb
print-% : ; @echo $* = $($*)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment