From mboxrd@z Thu Jan 1 00:00:00 1970 From: Timothy Reaves To: cygwin@sourceware.cygnus.com Subject: Please help with make Date: Wed, 31 Mar 1999 19:45:00 -0000 Message-ID: <199903112006.PAA00545@localhost.localdomain> X-SW-Source: 1999-03n/msg00360.html Message-ID: <19990331194500.tmrejBjNm01X5nQKGCUQYnkqzAZaeCCz9C5AW6QmfuE@z> I have the following line in my .bashrc file. alias ptj='ptjavac -g -d /dev/classes -classpath $CLASSPATH' ptjavac is a replacement for javac, with the bug that it cannot properly read the classpath env. var. That is why it has the -classpath setting. This app is a windows app, not unix. The alias allows me to type 'pjt User.java' and all goes well. However, it fails when called from make. Here is my Makefile: ************************************************************ # Command to call for compiling a Java source file PTJAVAC=ptjavac # Options to pass with a call to $(PTJAVAC); here, an extra # directory for class file output should be used. PTJAVACOPTS=-g -d $(CLASSDIR) -classpath $(CLASSPATH) User : User.java $(PTJAVAC) $(PTJAVACOPTS) User.java ************************************************************ This fails with errors that ptjavac can not find classes, so it is not actually getting the classpath passed in properly. What am I doing wrong? Thanks. -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe@sourceware.cygnus.com