diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-20 01:18:37 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-26 17:48:44 -0700 |
commit | d6bac0f1ca6489e1d532c4e1a5fb3e6b774aafd7 (patch) | |
tree | 6334ec564f54fb1a416a7983354e1e49299f8081 /GNUmakefile | |
parent | 4eba23686e58008faa7798182ef3673b799b7e64 (diff) |
lib9p: Pull the IDL parser into a separate file
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 1ccbc73..9f5ad61 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -34,8 +34,8 @@ lib9p/include/lib9p/linux-errno.h: %: %.gen 3rd-party/linux-errno.txt $^ >$@ generate/files += lib9p/9p.generated.c lib9p/include/lib9p/9p.generated.h -lib9p/9p.generated.c lib9p/include/lib9p/9p.generated.h &: lib9p/idl.gen lib9p/idl/*.9p - $^ +lib9p/9p.generated.c lib9p/include/lib9p/9p.generated.h &: lib9p/idl.gen lib9p/idl/__init__.py lib9p/idl lib9p/idl/*.9p + $< $(filter %.9p,$^) generate/files += libusb/include/libusb/tusb_helpers.h 3rd-party/MS-LCID.pdf 3rd-party/MS-LCID.txt libusb/include/libusb/tusb_helpers.h 3rd-party/MS-LCID.pdf 3rd-party/MS-LCID.txt &: libusb/include/libusb/tusb_helpers.h.gen |