This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env stack | |
{- | |
stack script | |
--resolver lts-11.9 | |
--package array | |
-} | |
-- Not really required, but make some stuff more concise to write | |
{-# LANGUAGE LambdaCase #-} | |
{-# LANGUAGE TupleSections #-} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CFLAGS = -lstdc++ -lOpenCL | |
AMDOCLSDK=/scratch/c703/c703432/amd_ocl/AMD-APP-SDK-v2.6-RC3-lnx64 | |
INC=-I$(AMDOCLSDK)/include | |
LIB=-L$(AMDOCLSDK)/lib/x86_64 | |
assignment_3: assignment_3.cpp helper.cpp | |
gcc $(INC) $(LIB) $(CFLAGS) -o $@ $^ | |
clean: |