• Sign in

opencl / cookbook · Files

Dogs2 white

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Snippets
  • Network
  • cookbook
  • Makefile
  • Latest changes and polishments...
    62adb687
    Georg Hopp authored
    2016-03-27 09:07:28 +0200  
    Browse Files »
Makefile 291 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
CFLAGS += -O0 -Werror -ggdb -std=c99
LIBS += -lOpenCL
CC = cc

BINARIES = part1 part2 part3 part4 part5 part6 part8 createclbin part6bin

all: $(BINARIES)

%: %.c
	$(CC) $(CFLAGS) $(LIBS) -o $@ $<

part4.clbin: createclbin
	createclbin

.PHONY: clean

clean:
	@rm -f $(BINARIES) part4.clbin