Almost for got to say that i found out how to do the thing about sub directorys in my makefile, it is quite nice 8=)
make the correct sub folder both in the src and objs directory, and changes src_files := $(wildcard *.c) to src_files := $(wildcard *.c skills/*.c spells/*.c) thats it, work wonders cleaning and splitting up stuff. i already did this afew years back 1997-98 i think, but i was not useing wildcard back then, so you can imagin a big makefile you get after splitting rom up in files like: do_save.c do_who.c spell_blabla.c and so on. but it makes compiling, go alot fastere when useing a small cluster and you dont have to compile the hold files when you changes just alittle 8=)

