mudcoders / guildmud

A SocketMUD-based Multi-User Dungeon built and managed by the members of The MUD Coders Guild.
MIT License
25 stars 11 forks source link

Improve Makefile #14

Closed rogersm closed 6 years ago

rogersm commented 6 years ago

As a preparatory task for adding testing, I propose to remove src/Makefile and create a single Makefile in the root directory.

This new Makefile will compile all the *.o files (except main.o) to a libguildmud.a library and then link it to main.o.

Doing it this way will help to link the tests to libguildmud.a without having to exclude main.o.

Comments?

rogersm commented 6 years ago

Closing it after applying PR #15.