1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-01-26 16:01:06 +02:00

11 lines
139 B
Makefile
Raw Normal View History

2010-05-25 21:49:58 -05:00
CC ?= gcc
CFLAGS ?= -O2 -Wall
all: srec2vram
srec2vram: srec2vram.c
$(CC) $(CFLAGS) -o srec2vram srec2vram.c
clean:
rm -f srec2vram