0
votes
1answer
48 views

How to make a proper Java makefile?

I need to make a makefile for a Java project. My project is basic. A package which contains my main file and some others packages. Can someone help me to make a proper makefile for that kind of ...
0
votes
1answer
25 views

Writing java makefile for copy xml files to output directory

In my Java application,I want to add a directory inside my package structure. This directory contains some XML files. Since these files cannot be compiled, I want to copy these files during war make ...
-7
votes
1answer
70 views

What is a shell script, makefile and ant file [closed]

I had two homework, one C program and the other Java. I did them but the professor ask for: Include a build, test and execution script (e.g. shell script, makefile, ant file) for your ...
0
votes
0answers
17 views

How to write Java Makefile with custom packages?

I am trying to use my own package for my classes but my Makefile keeps giving me problems. I have searched google but I can't understand what others are saying about class paths. JFLAGS = -g JC = ...
0
votes
1answer
26 views

Java makefile run

I have a project that I created with eclipse. Now I want to copy this project to my linux computer to compile and run it there. For this I want to create a makefile for compiling and running ...
0
votes
2answers
89 views

Java cannot create a file - Linux

When I create a file in Ubuntu using a Java program I get this error: Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at actions.create.actionPerformed(create.java:18) ...
0
votes
2answers
126 views

Basics on java makefile

I am new to java and makefile, and I'd like some introductory information about a makefile. The information that's typically found online are mostly examples and high level. Here's some specific/naive ...
1
vote
2answers
64 views

Why does the following makefile not work?

In the following makefile, the target "compile" is executed every single time irrespective of whether its dependencies are altered or not. The same however, is not true for the target "doc", although ...
4
votes
3answers
226 views

Java Makefile Error

I'm having this error when trying to compile my Java project with a Makefile I created. Error: make: No rule to make target src/edu/osu/lispinterpreter/output/*.class', needed byclasses'. Stop.* ...
0
votes
0answers
50 views

build-binary.mk:266: warning: ignoring old com mands for target

Hi guys got the following warnings while compiling the ndk-build...Please siggest me with a soution. C:\NDK\android-ndk-r8d>ndk-build -C C:\AndroidProjects\JniTim1Test\jni make: Entering ...
0
votes
0answers
111 views

Modifying a Makefile - java

I am trying to work on one of the old Google AI challenges. The project comes with a working Makefile. I am trying to get the project to work through Eclipse. At first all java files were sitting with ...
0
votes
2answers
111 views

How to make a makefile only for compiling some java files?

I have three java files named A.java, B.java, C.java, A will create object B, B will create object C. But I have never built a makefile before. Does anyone can help me build a makefile just to compile ...
1
vote
1answer
228 views

How do I create a Makefile that will compile and run java code with command line arguments?

I need to be able to compile my program, then execute it 3 different times with a different .txt file as the first command line argument each time, and this all needs to be done with a single "make" ...
0
votes
1answer
178 views

Android static library method cannot be called

I'm having a similar problem to what this person was having: Android NDK import-module / code reuse But for some reason when I implement the solution that they listed, it doesn't work for me. The ...
1
vote
2answers
51 views

Makefile problems with java

I need to make a makefile to compile a couple of my java files to turn in but I have no idea how to do that. I searched the web with no luck. Currently my file is JFLAGS = -g JC = javac .SUFFIXES: ...
0
votes
2answers
259 views

javac makefile re-compiling on every 'make'

Any idea why this makefile would re-compile (unnessesarily so) each .class file? Also, I think it is relevant, the java files import the files above them. I've tried this 4 times and wasted hours to ...
0
votes
2answers
404 views

How can I make makefile for java with external jar file?

I have a java project, and need to write makefile to let it run on Linux. My project includes external jar files and resource package(.txt resourses).I am really a newbie for Linux, and just learn how ...
0
votes
3answers
81 views

Makefile run more than once

I'm trying to compile my Java code with this Makefile. How ever when I run make, it compiles the code more than once. Makefile: .PHONY: all clean run SOURCES = \ Models/CustomException \ ...
2
votes
2answers
183 views

How do I add a .jar file to the compilation of .java files

My makefile is below Also, I would appreciate it if you told me how to move my .class files to ../bin/ JFLAGS = -cp JAR = "RSBot*.jar" JC = javac .SUFFIXES: .java .class .java.class: ...
-1
votes
1answer
2k views

cygwin cannot find make program

What I'm trying to do is successfully compile native code using Cygwin. The error message i get when i run type my directory to the ndk-build in the terminal is ERROR: Cannot find 'make' program. ...
0
votes
1answer
153 views

Debug a makefile in Java

I have no idea how to troubleshoot errors that arise while a project is building. Any suggestions for dealing with this? Language is Java. make[1]: *** No rule to make target ...
1
vote
1answer
580 views

Run java class from single command using makefile

I have a homework assignment in Java that is tested using the commands: make ./<program_name> <arguments> my make file compiles my java program successfully, but how can the program be ...
2
votes
1answer
646 views

make[1]: Entering directory error message

I have a simple Makefile: default: @make build @make run build: @javac Test.java > /dev/null run: @java Test During compilation, make outputs: make[1]: Entering directory ...
0
votes
2answers
509 views

jpcap compilation/installation failing on Gumstix

( A bit of background can be found in my previous question here, if it assists someone in helping me: JamVm not running an application (that uses jpcap) on Gumstix ). I am trying to run a packet ...
2
votes
2answers
426 views

build jdk(openjdk-7) from source

After downloading openjdk-7-fcs-src-b147-27_jun_2011.zip on my Ubuntu 11.10, i tried to build it from source. There were some warning/errors in the beginning which I was able to correct except one. ...
2
votes
1answer
116 views

How to debug this Makefile

I have a C makefile which generates header file from java code and compiles very simple C executable file. There is an error which I can't find. When I try to run the code I get UnsatisfiedLinkError. ...
0
votes
1answer
414 views

compiling a file using an ANTLR grammar

I've been writing an antlr grammar to eventually be used as part of a compiler for smallC programs. For pulling in the code I was originally using java programs which call the grammar and contain the ...
1
vote
3answers
166 views

Java code to use variable value depending on build flag

makefile that compiles all java files.
1
vote
2answers
434 views

How do I build MWDumper from source?

Java newbie here. I'm trying to run the latest version of MWDumper, which is a command-line utility that imports wiki databases. The page said I should build it from its source. I've downloaded the ...
3
votes
1answer
313 views

How to make a makefile that will compile C, C++, and Java files all at once

I'm trying to create a Makefile that will compile and run 3 different implementations of a markov algorithm all at once. I'm new to makefiles so if there's multiple mistakes, please let me know. Also, ...
0
votes
1answer
239 views

Make File to run on Linux/ MAC OS to compile .Java Files to an exe form

I am a beginner in Java. I made my Java program using NetBeans. Now I have my .jar file. But I would like to know how to write commands to compile .Java classes to .Class and then build a jar using ...
0
votes
1answer
232 views

Android: Adding a new framework

I am trying to add a new framework in Android Source code and call my applications using that framework. I have included my framework files and called the functions. Makefile for the application ...
1
vote
1answer
1k views

Java makefile to eclipse project

I have an makefile version of a java project which is organized as follows: CLASSFILES=Main/Main.class Lex/BooleanLiteral.class< and so on> JAVAFILES=IR/*.java CFILES=Runtime/*.c I am looking ...
0
votes
2answers
355 views

Problematic make file for java

JFLAGS = -d bin -cp lib/slick.jar:lib/lwjgl.jar JC = javac .SUFFIXES: .java .class .java.class: $(JC) $(JFLAGS) src/$*.java CLASSES = \ Game.java \ Block.java \ ...
0
votes
1answer
1k views

how to make makefile for java with external jar file

I need to make a makefile that compiles and executes my classes with an external jar file.. I have 4 classes;sync.java, FileSynchroniser.java, DirectoryTracer.java and SyncFileTracer.java. I also ...
0
votes
3answers
203 views

Fast, easy to maintain, and parallelizable way to build java code?

I'm working on a build system that has bad practices piled on other bad practices for a long time and I'm in the process of re-writing the build. The languages involved are C/C++, Fortran, Ada, and ...
0
votes
1answer
318 views

Execute Makefile using Java command?

I'm just wandering. Is there a possibility to execute makefile.in using a Java command? Something like what you can do with Java and Ant. Thanks
2
votes
1answer
1k views

Are there special permissions in Windows 7 to prevent file creation?

I created a program that takes in an excel file and pastes in an image of a graphical timeline based on the events in the document. But when trying this on a PC with windows 7 coming from XP and Vista ...
5
votes
1answer
941 views

Installing PyLucene 3.0.3 on Ubuntu 10.04

I'm attempting to install PyLucene 3.0.3 on Ubuntu 10.04. This has proven considerably challenging, but so far I've: Patched setuptools to allow building of JCC, as instructed in the PyLucene docs. ...
0
votes
3answers
4k views

Makefile with Jar and Package Dependencies

I have been trying all day to get this thing to work. Basically I need to create a makefile to build my project from its sources. I know a little about Linux but not much and I am a complete makefile ...
4
votes
3answers
2k views

Is there a way to export a Makefile from a Java Eclipse project?

So I have this Java project made up of several classes, some external JAR files and an executable Java program. I would like to export the whole code and external JARS to an external directory and to ...
2
votes
4answers
425 views

Multilanguage development

I would like to develop an application with two languages. Actually, the goal is to generate two differents application, one with a language (Java), the other on in another language (C#). I would ...
0
votes
5answers
766 views

Problem with run DOS command in Java

Dear all I want to execute a EXE file in Java, but I was not able to do it correctly. Originally, in DOS command prompt, my command is like this: C:>\crf_test.exe model <inputfile.txt> ...
1
vote
2answers
609 views

Java Makefile Output Single Executable

How can I create a Makefile to compile my Java program with a single source file located in src/Hello.java to ouput a file that I can run with ./prog
0
votes
2answers
2k views

How to correctly make a java jar file using this makefile with files in src/ and bin/

I am having trouble correctly generating a Jar for my Java implementation. I am not a Java master ( Thus why I am using Make and not Ant). I didn't think I cared about a Jar until I realized my ...
2
votes
4answers
2k views

How to write “set classpath” in makefile for Java in Linux?

I have a newbie question for writing makefile for java in Linux I have a project with: A.java B.java C.java A is dependent on B.java and C.java, they should be in the same folder It is supposed ...
2
votes
1answer
820 views

Makefile for Java cannot find package

Hello I am new in Java development. I tried to write a makefile which should be runnable in Linux: JFLAGS = -g JC = javac .SUFFIXES: .java .class .java.class: $(JC) $(JFLAGS) $*.java ...
1
vote
7answers
8k views

Makefile for java

I am running Eclipse in windows for doing my homeworks. I have to submit a makefile so that my code (singlefile.java) can be compiled. How can I do this. I found this. Can it be tested on windows. ...
0
votes
2answers
350 views

How can I reduce makefile boilerplate when doing out-of-source builds and Java?

I've got a quick and dirty little make file that does out-of-source builds for a relatively small java project: default: bin/classes/EntryPoint.class bin/classes/manifest jar cvfm ...
0
votes
2answers
2k views

makefile for java

i don't understand what i did wrong with my makefile : JAVA_SRCS:=$(wildcard tasks/src/*.java) JAVA_CLASSES=$(subst /src/,/build/,$(JAVA_SRCS:.java=.class)) JFLAGS=-cp jar/octobot.jar -d tasks/build ...

1 2