From eb80057e11b9e2bc37bad3cfa410bbf2dc7377f2 Mon Sep 17 00:00:00 2001 From: Joshua Groves Date: Fri, 28 Sep 2018 00:35:41 -0600 Subject: [PATCH] Fix C example name --- examples/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Makefile b/examples/Makefile index c78b661b4..9bd128145 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,4 +1,4 @@ -all: hello_world_c +all: hello_triangle_c CC=gcc CFLAGS=-I. @@ -9,6 +9,6 @@ LINK_ARGS=-L ./../target/debug -lwgpu_native %.o: %.c $(DEPS) $(CC) $(LINK_ARGS) -c -o $(OUTDIR)/$@ $< $(CFLAGS) -hello_world_c: hello_triangle_c/main.c +hello_triangle_c: hello_triangle_c/main.c mkdir -p $(OUTDIR) $(CC) $(LINK_ARGS) -o $(OUTDIR)/$@ $^ $(CFLAGS)