brownie124
Programmer
This isn't a C++ problem really but I thought someone here would know the answer. I have manually created a makefile to actually compile java applications. However, it will only compile the first one and nothing more. Here is an example of the make file:
The first one compiles fine, but the second one doesn't compile at all. I don't receive any errors or anything, nmake just seems to stop.
Thanks,
- Brownie
Code:
PREFIX=foo
$(PREFIX).class: $(PREFIX).java
javac $(PREFIX).java
PREFIX=foo1
$(PREFIX).class: $(PREFIX).java
javac $(PREFIX).java
Thanks,
- Brownie