Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2252 → Rev 2253

/branches/fs/uspace/tetris/Makefile
4,8 → 4,8
 
LIBS = $(LIBC_PREFIX)/libc.a
 
OUTPUT = cat
SOURCES = cat.c
OUTPUT = tetris
SOURCES = shapes.c scores.c input.c tetris.c screen.c
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
 
.PHONY: all clean depend disasm
33,3 → 33,4
 
%.o: %.c
$(CC) $(DEFS) $(CFLAGS) -c $< -o $@