Rev 1449 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1449 | Rev 1466 | ||
|---|---|---|---|
| Line 3... | Line 3... | ||
| 3 | include $(LIBC_PREFIX)/Makefile.toolchain |
3 | include $(LIBC_PREFIX)/Makefile.toolchain |
| 4 | 4 | ||
| 5 | LIBS = $(LIBC_PREFIX)/libc.a |
5 | LIBS = $(LIBC_PREFIX)/libc.a |
| 6 | 6 | ||
| 7 | OUTPUT = tetris |
7 | OUTPUT = tetris |
| 8 | SOURCES = shapes.c tetris.c scores.c input.c screen.c |
8 | SOURCES = shapes.c scores.c input.c tetris.c screen.c |
| 9 | OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) |
9 | OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) |
| 10 | 10 | ||
| 11 | .PHONY: all clean depend disasm |
11 | .PHONY: all clean depend disasm |
| 12 | 12 | ||
| 13 | all: $(OUTPUT) |
13 | all: $(OUTPUT) |