• 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
  • checkin of the relevant examples of the OpenCL cookbook
    750a8ce9
    Georg Hopp authored
    2015-07-15 18:27:26 +0200  
    Browse Files »
Makefile 269 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
CFLAGS += -O2 -march=native -std=c99 -I/usr/local/include
LIBS += -lcl -L/usr/local/lib64/beignet
CC = cc

BINARIES = part1 part2 part3 part4 part5 part6 part8

all: $(BINARIES)

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

.PHONY: clean

clean:
	rm $(BINARIES)