Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92456727
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
Wed, Nov 20, 11:31
Size
294 B
Mime Type
text/x-makefile
Expires
Fri, Nov 22, 11:31 (2 d)
Engine
blob
Format
Raw Data
Handle
22444477
Attached To
rSTICAZZI yearII_reports
makefile
View Options
CC = g++
CFLAGS = -std=c++0x -Wall -g
EXEC_NAME = Exercice5
INCLUDES =
LIBS =
OBJ_FILES = Exercice5.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