mirror of
https://github.com/bitbank2/image_to_c.git
synced 2025-11-04 14:49:59 +08:00
14 lines
176 B
Makefile
Executable File
14 lines
176 B
Makefile
Executable File
CFLAGS=-c -Wall -O0
|
|
LIBS =
|
|
|
|
all: image_to_c
|
|
|
|
image_to_c: main.o
|
|
$(CC) main.o $(LIBS) -o image_to_c
|
|
|
|
main.o: main.c
|
|
$(CC) $(CFLAGS) main.c
|
|
|
|
clean:
|
|
rm -rf *.o image_to_c
|