Files
simtrace/at91sam7/host/Makefile
Harald Welte 1a37d4095f import the host PC utility for the at91sam7 based sniffer
This program receives the USB messages from the AT91SAM7 and forrwards
them via GSMTAP to wireshark.
2010-11-18 22:58:56 +01:00

14 lines
187 B
Makefile

LDFLAGS=-lusb #-losmocore
all: simtrace
simtrace: main.o usb_helper.o usb.o apdu_split.o
$(CC) $(LDFLAGS) -o $@ $^
%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $^
clean:
@rm -f simtrace *.o