[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Separate dirs for source (.c .java) and build files (.class .o)
From: |
Alexander Farber |
Subject: |
Re: Separate dirs for source (.c .java) and build files (.class .o) |
Date: |
Sun, 18 Dec 2005 21:01:45 +0100 |
Ah ok this one is because I use explicitly $(MEDIA) and not $^
On 12/18/05, Alexander Farber <address@hidden> wrote:
> Also I don't understand, why do I have to add $(addprefix media ...)
> into the rule below, even though I have the "media" dir in the VPATH?
>
> Pref.jar: $(CLASSES) $(MEDIA)
> jar cvf $@ $(addprefix media/, $(MEDIA)) \
> $(addprefix -C $(BUILD) , $(notdir $(CLASSES)))
>