Subversion Repositories programming

Rev

Rev 300 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
294 ira 1
 
2
CC      = gcc
3
CFLAGS  = -O2 -pipe
4
OUTNAME = proj1
5
SRCS    = proj1.c
6
 
7
# targets:
8
 
9
all: proj1
10
 
11
clean:
12
	rm -f *~ *.o $(OUTNAME)
13
 
14
proj1:
15
	$(CC) $(CFLAGS) proj1.c -o $(OUTNAME)
16