Skip to content

Commit

Permalink
Remove data.o from dec util to fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
petabyt committed Dec 17, 2023
1 parent 1ca271c commit ef92f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ libcamlib.so: $(FILES)
$(CC) -c $(CFLAGS) $< -o $@

# PTP decoder
DEC_FILES=src/dec/main.o src/enums.o src/enum_dump.o src/data.o src/packet.o src/conv.o src/log.o
DEC_FILES=src/dec/main.o src/enums.o src/enum_dump.o src/packet.o src/conv.o src/log.o
dec: $(DEC_FILES)
$(CC) $(DEC_FILES) $(CFLAGS) -o $@

Expand Down

0 comments on commit ef92f79

Please sign in to comment.