Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96086548
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 22, 11:48
Size
294 B
Mime Type
text/x-makefile
Expires
Tue, Dec 24, 11:48 (2 d)
Engine
blob
Format
Raw Data
Handle
23116928
Attached To
rSTICAZZI yearII_reports
makefile
View Options
CC = g++
CFLAGS = -std=c++0x -Wall -g
EXEC_NAME = Exercice1
INCLUDES =
LIBS =
OBJ_FILES = Exercice1.o
all : $(EXEC_NAME)
clean :
rm $(EXEC_NAME) $(OBJ_FILES) *.out
$(EXEC_NAME) : $(OBJ_FILES)
$(CC) -o $(EXEC_NAME) $(OBJ_FILES) $(LIBS)
%.o: %.cpp
$(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $<
Event Timeline
Log In to Comment