Subversion Repositories test

Rev

Blame | Last modification | View Log | RSS feed


PROG = hello

SRC = hello.c

OPT = -Wall

$(PROG): $(SRC) Makefile
        cc $(SRC) $(OPT) -o $(PROG)

clean:
        rm $(PROG)