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.
18 lines
210 B
Makefile
18 lines
210 B
Makefile
![]()
10 years ago
|
CC=gcc
|
||
|
LD=$(CC)
|
||
|
CFLAGS=-Wall -g `libpng-config --cflags`
|
||
|
LDFLAGS=`libpng-config --libs`
|
||
|
|
||
|
PROG=png_to_vmu_lcd
|
||
|
OBJS=main.o
|
||
|
|
||
|
all: $(PROG)
|
||
|
|
||
|
clean:
|
||
|
rm $(PROG) $(OBJS)
|
||
|
|
||
|
$(PROG): $(OBJS)
|
||
|
$(LD) $(LDFLAGS) $^ -o $@
|
||
|
|
||
|
|