source:
sandbox/JamPlayerUSB/Makefile@
147
Last change on this file since 147 was 109, checked in by , 14 years ago | |
---|---|
File size: 231 bytes |
Rev | Line | |
---|---|---|
[109] | 1 | CC=gcc |
2 | CFLAGS=-Wall -I../lib | |
3 | ||
4 | ifeq ($(WINDIR),) | |
5 | LDLIBS=-lftdi | |
6 | else | |
7 | LDLIBS=../lib/ftd2xx.lib | |
8 | endif | |
9 | ||
10 | all: jbi.exe | |
11 | ||
12 | jbi.exe: jbicomp.o jbijtag.o jbimain.o jbistub.o | |
13 | $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS) | |
14 | ||
15 | clean:: | |
16 | rm -f *.o *.exe |
Note:
See TracBrowser
for help on using the repository browser.