source: other-projects/rsyntax-textarea/devel-packages/jflex-1.4.3/examples/binary/Makefile@ 25584

Last change on this file since 25584 was 25584, checked in by davidb, 12 years ago

Initial cut an a text edit area for GLI that supports color syntax highlighting

File size: 314 bytes
Line 
1
2JAVA = java
3JAVAC = javac
4JFLEX = jflex
5
6# -------------------------------------------------
7
8all: run
9
10run: compile
11 $(JAVA) BinaryLexer *
12
13compile: BinaryLexer.class StraightStreamReader.class
14
15clean:
16 rm -f *~ *.class BinaryLexer.java
17
18%.class: %.java
19 $(JAVAC) $^
20
21BinaryLexer.java: binary.flex
22 $(JFLEX) $^
Note: See TracBrowser for help on using the repository browser.