Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96618310
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
Sun, Dec 29, 00:32
Size
334 B
Mime Type
text/x-makefile
Expires
Tue, Dec 31, 00:32 (2 d)
Engine
blob
Format
Raw Data
Handle
23199961
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