URL
https://opencores.org/ocsvn/usb_nand_reader/usb_nand_reader/trunk
Subversion Repositories usb_nand_reader
[/] [usb_nand_reader/] [trunk/] [pc/] [Makefile] - Rev 5
Go to most recent revision | Compare with Previous | Blame | View Log
SRC=main.c\
actions.c\
nand_vendors.c
CC=gcc
TGT=client
LIBUSB=/usr/include/libusb-1.0
CFLAGS=-I. -I./include -I$(LIBUSB)
LIBS=-L. -lusb-1.0
all:
$(CC) $(CFLAGS) $(SRC) -o $(TGT) $(LIBS)
clean:
@if[ -f $(TGT) ]; then\
rm -f $(TGT)
@fi;
Go to most recent revision | Compare with Previous | Blame | View Log