Files
simtrace/host/Makefile
Harald Welte 3e16dd64cf re-structure the directory layout to reflect that that ft232r stuff is old
we have long only been working on the sam7 based system.
2011-07-06 12:32:30 +02:00

14 lines
186 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