yandex / faster-rnnlm

Faster Recurrent Neural Network Language Modeling Toolkit with Noise Contrastive Estimation and Hierarchical Softmax
Other
562 stars 138 forks source link

make clean: add rnnlm.o #12

Closed akoehn closed 8 years ago

akoehn commented 8 years ago

This is too trivial for a pull request:

Currently, the "clean" target only deletes rnnlm and $(OBJ_FILES). However, rnnlm.o is not contained in OBJ_FILES.

Therefore, it would be great to add rnnlm.o:

clean:
    rm -f rnnlm rnnlm.o $(OBJ_FILES)

Thanks for providing faster-rnnlm!

akhti commented 8 years ago

Fixed. Thanks!