width and stuff

This commit is contained in:
Joseph Redmon
2015-06-16 14:54:26 -07:00
parent 48401dcbf1
commit 3b864c2254
4 changed files with 14 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ endif
OBJS = $(addprefix $(OBJDIR), $(OBJ))
DEPS = $(wildcard src/*.h) Makefile
all: obj $(EXEC)
all: obj results $(EXEC)
$(EXEC): $(OBJS)
$(CC) $(COMMON) $(CFLAGS) $(LDFLAGS) $^ -o $@
@@ -55,6 +55,8 @@ $(OBJDIR)%.o: %.cu $(DEPS)
obj:
mkdir -p obj
results:
mkdir -p results
.PHONY: clean