Subversion Repositories programming

Rev

Rev 301 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed


CC      = gcc
CFLAGS  = -O2 -pipe
OUTNAME = proj1
SRCS    = proj1.c

# targets:

all: proj1

clean:
        rm -f *~ *.o $(OUTNAME)

proj1:
        $(CC) $(CFLAGS) proj1.c -o $(OUTNAME)