aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6119205..d7e2482 100644
--- a/Makefile
+++ b/Makefile
@@ -44,6 +44,7 @@ C_NAME = libsmith.a
NAME = smith
CC = clang
GO = go
+GO_DIR = gosrc/
#------------------------------------------------------------------------------#
CFLAGS = -O2
CFLAGS += -Wall -Werror -Wextra -pedantic
@@ -68,7 +69,7 @@ ${C_NAME}: ${OBJS_DIR} ${OBJS} ${INCS}
#==============================================================================#
#------------------------------------------------------------------------------#
all: ${C_NAME}
- go build
+ go build -o ./smith gosrc/*
#------------------------------------------------------------------------------#
clean:
rm -rvf ${OBJS_DIR} ${OUT_DIR}${NAME}