Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108628968
makefile
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Apr 17, 18:20
Size
334 B
Mime Type
text/x-makefile
Expires
Sat, Apr 19, 18:20 (2 d)
Engine
blob
Format
Raw Data
Handle
25632498
Attached To
R7871 phys-743-exercises
makefile
View Options
include ./make.inc
all: dgemm
HEADERS1 = utils.h
SOURCES1 = dgemm.c
OBJ1 = $(SOURCES1:.c=.o)
dgemm: $(OBJ1)
$(CC) $(OBJ1) $(LDOPTS) $(OPTS) $(LIBDIR) $(LIB) $(INC) -o dgemm
#.SUFFIXES: .c .cpp .cu .o
%.o : %.c
echo $(OBJ)
$(CC) $(OPTS) $(INC) -c $<
clean:
echo $(OBJ1) dgemm
rm -f $(OBJ1) dgemm
.PHONY: clean
Event Timeline
Log In to Comment