Subversion Repositories test

Compare Revisions

Ignore whitespace Rev 15 → Rev 16

/trunk/testc/Makefile
New file
0,0 → 1,13
 
PROG = hello
 
SRC = hello.c
 
OPT = -Wall
 
$(PROG): $(SRC) Makefile
cc $(SRC) $(OPT) -o $(PROG)
 
clean:
rm $(PROG)