Fix faults in Makefiles
Hello, this commit fixes a couple of faults in the Makefiles newrole/Makefile
and setfiles/Makefile
.
Specifically, in newrole/Makefile
newrole.o
is dependent on hashtab.h
but there isn't any rule to declare it. Similarly, in setfiles/Makefile
, restore.o setfiles.o restorecon_xattr.o
are dependent on restore.h
.
The build can cause incorrect results when the project is incrementally built. For example, any changes in restore.h
will not cause the object file restore.o
to be rebuilt.