pwnieexpress / pwn_plug_sources

Public source repository for the Pwn Plug platform.
GNU General Public License v3.0
129 stars 94 forks source link

Issues with compiling #30

Open paulsonmathew21 opened 6 years ago

paulsonmathew21 commented 6 years ago

Current makefile will not work for some Linux distribution. I find some issues with the compile argument positions. Compiling done after changing the position.

Initially: $(CC) $(BT_LIB) $(NCURSES_LIB) $(PTHREAD) dev_class.c namelist.c spooftooph.c bdaddr.c oui.c -o spooftooph

After changing the position: $(CC) dev_class.c namelist.c spooftooph.c bdaddr.c oui.c $(BT_LIB) $(NCURSES_LIB) $(PTHREAD) -o spooftooph