You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I reorganized the repo to essentially put everything in c/ and java/ subdirectories, with a top-level Makefilethat builds everything into build/. That way, all a user needs to do is install whatever is inbuild/and can ignore everything else. It remains a to-do to auto-generatebuild/docs`, so for now its in the top-level too.
Would be ideal not to hard-code so much in the Makefile, though?
determine when best to remove build/obj/ (so that once make is done, everything is staged in build/, for make install); right now, make install depends on libcs.a, which is thus depending on obj/ not yet being deleted
The text was updated successfully, but these errors were encountered:
I reorganized the repo to essentially put everything in
c/
andjava/ subdirectories, with a top-level
Makefilethat builds everything into build/. That way, all a user needs to do is install whatever is in
build/and can ignore everything else. It remains a to-do to auto-generate
build/docs`, so for now its in the top-level too.Would be ideal not to hard-code so much in the
Makefile
, though?https://github.com/cs50/spl/blob/master/Makefile
Makefile
make
is done, everything is staged in build/, formake install
); right now,make install
depends onlibcs.a
, which is thus depending on obj/ not yet being deletedThe text was updated successfully, but these errors were encountered: