summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-09-03 10:26:33 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-09-03 10:26:33 +0000
commit34835ccd0e4c467a0d4b2af54999fea20befde4c (patch)
tree3071c896abd780fab5648ce90cc590c9ee293247
parent62794583efb6a303937e99201d78e8736592c5d7 (diff)
downloadrockbox-34835ccd0e4c467a0d4b2af54999fea20befde4c.zip
rockbox-34835ccd0e4c467a0d4b2af54999fea20befde4c.tar.gz
rockbox-34835ccd0e4c467a0d4b2af54999fea20befde4c.tar.bz2
rockbox-34835ccd0e4c467a0d4b2af54999fea20befde4c.tar.xz
Added Makefile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2151 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--www/devcon/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/www/devcon/Makefile b/www/devcon/Makefile
new file mode 100644
index 0000000..751a62f
--- /dev/null
+++ b/www/devcon/Makefile
@@ -0,0 +1,9 @@
+ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL >$@
+
+SRC := $(wildcard *.t)
+OBJS := $(SRC:%.t=%.html)
+
+all: $(OBJS)
+
+%.html : %.t
+ $(ACTION) $<