source: sandbox/JamPlayerUSB/Makefile@ 201

Last change on this file since 201 was 109, checked in by demin, 14 years ago

First working version

File size: 231 bytes
RevLine 
[109]1CC=gcc
2CFLAGS=-Wall -I../lib
3
4ifeq ($(WINDIR),)
5 LDLIBS=-lftdi
6else
7 LDLIBS=../lib/ftd2xx.lib
8endif
9
10all: jbi.exe
11
12jbi.exe: jbicomp.o jbijtag.o jbimain.o jbistub.o
13 $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
14
15clean::
16 rm -f *.o *.exe
Note: See TracBrowser for help on using the repository browser.