mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2026-06-26 00:50:41 +03:00
first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user