Subversion Repositories programming

Rev

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


CC      = gcc
CFLAGS  = -O2 -pipe

# targets:

all: proj1-seq proj1-par

clean:
        rm -f *~ *.o proj1-seq proj1-par

proj1-seq:
        $(CC) $(CFLAGS) proj1-sequential.c -o proj1-seq

proj1-par:
        $(CC) $(CFLAGS) proj1-parallel.c -o proj1-par