You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
233 B
Makefile
19 lines
233 B
Makefile
16 years ago
|
ifndef CROSS_COMPILE
|
||
|
CROSS_COMPILE=mips-elf-
|
||
|
endif
|
||
|
|
||
|
OBJECTS=start.o promlib.o
|
||
|
|
||
|
INCLUDE=-I../../include
|
||
|
|
||
|
all: ${OBJECTS}
|
||
|
|
||
|
.c.o:
|
||
|
$(CC) ${CFLAGS} ${INCLUDE} -c $<
|
||
|
|
||
|
.S.o:
|
||
|
$(CC) ${CFLAGS} ${INCLUDE} ${ASFLAGS} -c $<
|
||
|
|
||
|
clean:
|
||
|
-rm -f *.o
|