mirror of
https://github.com/raphnet/dreamcast_usb
synced 2024-12-21 14:48:52 -05:00
18 lines
210 B
Makefile
18 lines
210 B
Makefile
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 $@
|
|
|
|
|