You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
243 B
13 lines
243 B
6 years ago
|
CFLAGS = -g -Wall -I../../../csrc/.
|
||
|
|
||
|
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/u8x8_d_bitmap.c ) main.c
|
||
|
|
||
|
OBJ = $(SRC:.c=.o)
|
||
|
|
||
|
hello_world: $(OBJ)
|
||
|
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o $@
|
||
|
|
||
|
clean:
|
||
|
-rm -f $(OBJ) hello_world *.tga
|
||
|
|