diff options
author | Marco Peereboom <marco@conformal.com> | 2010-08-12 18:14:31 +0000 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2010-08-12 18:14:31 +0000 |
commit | 207c361eaa0e22c578e7851cd86456e8ff3a11a6 (patch) | |
tree | f1d91ea6614c0db19c2f00b29b22aa174799b7d8 /linux | |
parent | 52573751160b8d9d1ea2d9c341a5173a6686564b (diff) | |
download | xombrero-207c361eaa0e22c578e7851cd86456e8ff3a11a6.tar.gz |
Make linux compile too
Diffstat (limited to 'linux')
-rw-r--r-- | linux/Makefile | 7 |
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 |