about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2010-08-12 18:14:31 +0000
committerMarco Peereboom <marco@conformal.com>2010-08-12 18:14:31 +0000
commit207c361eaa0e22c578e7851cd86456e8ff3a11a6 (patch)
treef1d91ea6614c0db19c2f00b29b22aa174799b7d8
parent52573751160b8d9d1ea2d9c341a5173a6686564b (diff)
downloadxombrero-207c361eaa0e22c578e7851cd86456e8ff3a11a6.tar.gz
Make linux compile too
-rw-r--r--linux/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/linux/Makefile b/linux/Makefile
index 78fe025..8f65af8 100644
--- a/linux/Makefile
+++ b/linux/Makefile
@@ -14,6 +14,12 @@ CC?= gcc
 
 all: xxxterm
 
+javascript.h: ../js-merge-helper.pl ../hinting.js
+	perl ../js-merge-helper.pl ../hinting.js \
+		../input-focus.js > javascript.h
+
+xxxterm.o: javascript.h
+
 xxxterm: ../xxxterm.o linux.o
 	$(CC) $(LDFLAGS) -o $@ $+ $(LDADD)
 
@@ -26,5 +32,6 @@ install: all
 
 clean:
 	rm -f xxxterm *.o
+	rm -f javascript.h
 
 .PHONY: all install clean