Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102721612
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, Feb 23, 12:39
Size
228 B
Mime Type
text/x-makefile
Expires
Tue, Feb 25, 12:39 (1 d, 14 h)
Engine
blob
Format
Raw Data
Handle
24405645
Attached To
R10848 The Area-Latency Symbiosis
Makefile
View Options
CC = gcc
CFLAGS = -std=c99 -Wall -pedantic
DEPS = gift128.h sundae.h
OBJ = main.o gift128.o sundae.c
%.o: %.c $(DEPS)
$(CC) $(CFLAGS) -c -o $@ $<
main: $(OBJ)
$(CC) $(CFLAGS) -o $@ $^
.PHONY: clean
clean:
rm -f main *.o
Event Timeline
Log In to Comment