summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorlaforge <laforge@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2006-09-25 21:49:08 +0000
committerlaforge <laforge@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2006-09-25 21:49:08 +0000
commit41423de5864e325663f76cc9336f8d0ba68a3c83 (patch)
tree3e94e7d4be89b41edef3dda405ebee0f9d81bf58 /firmware/Makefile
parent89c40594e76db780d1b72795901a8e8754810a62 (diff)
- fix build process of USB string header files (make it work with first 'make' run)
git-svn-id: https://svn.openpcd.org:2342/trunk@229 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index f94800b..b5f92ae 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -569,6 +569,7 @@ clean_list :
$(REMOVE) .dep/*
$(REMOVE) include/compile.h
$(REMOVE) src/picc/usb_strings_app.h
+ $(REMOVE) scripts/usbstring
.PHONY: include/compile.h
include/compile.h:
@@ -577,6 +578,9 @@ include/compile.h:
$(USBSTRINGS): %.h : %.txt ./scripts/usbstring
cat $< | ./scripts/usbstring > $@
+scripts/usbstring: scripts/usbstring.c
+ gcc $^ -o $@
+
# Include the dependency files.
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
personal git repositories of Harald Welte. Your mileage may vary