Add effective clockrate for realtime decoding to the displayed results of test_codec...
[kugel-rb.git] / utils / MTP / Makefile
blob4678546b02d0886920c011ad6504e25d82eb4cbe
1 CFLAGS = -Wall
2 LIBS = -lmtp
3 OUTPUT = sendfirm
5 all: $(OUTPUT)
7 $(OUTPUT): sendfirm.c
8 gcc $(CFLAGS) $(LIBS) -o $(OUTPUT) sendfirm.c
10 clean:
11 rm -f $(OUTPUT)