Skip to content

Commit

Permalink
Update Makefile to include javalib dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cclafferty5 committed Mar 14, 2021
1 parent eadc334 commit 46c3ee8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion proj2/gitlet/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ RMAKE = "$(MAKE)"
# A CLASSPATH value that (seems) to work on both Windows and Unix systems.
# To Unix, it looks like ..:$(CLASSPATH):JUNK and to Windows like
# JUNK;..;$(CLASSPATH).
CPATH = "..:$(CLASSPATH):;..;$(CLASSPATH)"

LIB = ../../library-sp21/javalib/*


CPATH = "$(LIB):..:$(CLASSPATH):;$(LIB);..;$(CLASSPATH)"

# All .java files in this directory.
SRCS := $(wildcard *.java)
Expand Down

0 comments on commit 46c3ee8

Please sign in to comment.