我想知道如何使用makefile来编译只使用更改的类(Java,Scala)。
我的.scala
位于src
目录中。当我编译时,输出(.class
)转到bin
目录。
在一个项目中,当你有~50个课程时,每次编译所有课程都太长了。
你知道如何解决我的问题吗?
我试过maven,但似乎有同样的问题。
我的makefile(对于Scala):
SRC = src
SOURCES = $(shell find . -name *.scala)
S = scala
SC = scalac
TARGET = bin
CP = bin
run: compile
@echo ":: Executing..."
@$(S) -cp $(CP) -encoding utf8 App -feature
compile: $(SOURCES:.scala=.class)
%.class: %.scala
clear
@echo ":: Compiling..."
@echo "Compiling $*.scala.."
@$(SC) -sourcepath $(SRC) -cp $(CP) -d $(TARGET) -encoding utf8 $*.scala
编辑:我找到了一个解决方案:比较.java和.bin的创建日期。这是我的makefile:https://gist.github.com/Dnomyar/d01d886731ccc88d3c63
SRC = src
SOURCES = $(shell find ./src/ -name *.java)
S = java
SC = javac
TARGET = bin
CP = bin
VPATH=bin
run: compile
@echo ":: Executing..."
@$(S) -cp $(CP) App
compile: $(SOURCES:.%.java=.%.class)
%.class: %.java
clear
@echo ":: Compiling..."
@echo "Compiling $*.java.."
@if [ $(shell stat -c %Y $*.java) -lt $(shell stat -c %Y $(shell echo "$*.class" | sed 's/src/bin/g')) ]; then echo ; else $(SC) -sourcepath $(SRC) -cp $(CP) -d $(TARGET) -encoding utf-8 $*.java; fi
clean:
@rm -R bin/*
# Pour supprimer les fichier .fuse* créés par sublime text
fuse:
@rm `find -name "*fuse*"`
答案 0 :(得分:0)
您可以使用VPATH
变量指定在哪里搜索依赖项的make。对于您的情况,您可以分配VPATH=bin
,其中make比较bin文件夹下文件的时间戳。
示例:
VPATH= obj
all: hello
@echo "Makeing - all"
touch all
hello:
@echo "Making - hello"
touch obj/hello
输出:
sagar@CPU-117:~/learning/makefiles/VPATH$ ls
Makefile obj
sagar@CPU-117:~/learning/makefiles/VPATH$ make
Making - hello
touch obj/hello
Makeing - all
touch all
sagar@CPU-117:~/learning/makefiles/VPATH$ ls
all Makefile obj
sagar@CPU-117:~/learning/makefiles/VPATH$ make
make: 'all' is up to date.
sagar@CPU-117:~/learning/makefiles/VPATH$ touch obj/hello
sagar@CPU-117:~/learning/makefiles/VPATH$ make
Makeing - all
touch all
sagar@CPU-117:~/learning/makefiles/VPATH$
答案 1 :(得分:0)
我找到了解决方案https://gist.github.com/Dnomyar/d01d886731ccc88d3c63 它有点难看,但似乎有效。