mirror of
https://gitea.osmocom.org/sim-card/simtrace.git
synced 2026-03-16 21:28:36 +03:00
This program receives the USB messages from the AT91SAM7 and forrwards them via GSMTAP to wireshark.
14 lines
187 B
Makefile
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
|