Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92341091
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
Tue, Nov 19, 12:58
Size
295 B
Mime Type
text/x-makefile
Expires
Thu, Nov 21, 12:58 (2 d)
Engine
blob
Format
Raw Data
Handle
22427126
Attached To
rSTICAZZI yearII_reports
makefile
View Options
CC = g++
CFLAGS = -std=c++0x -Wall -g
EXEC_NAME = Exercice7
INCLUDES =
LIBS =
OBJ_FILES = Exercice7.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