Under FreeBSD, for some odd reason every time I execute a simple Makefile
, it tries to create an obj
directory under the current PWD.
I thought it might have to do with the default .OBJDIR
for FreeBSD make, but setting .OBJDIR: ./
does not change this behavior.
This causes me problems down the line because it conflicts with SConstruct, but I managed to work around that by removing all read/write permissions for ./obj
, however I still want to know why every time I run make
, it tries to create the ./obj
directory if it doesn't exist.