Replies: 1 comment
-
Use ... or just write an inline Makefile and call that 😉 ... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a good way to get the Make-like facility which says 'To get a file which looks like this from a file which looks like this, run this command' and apply it to a set of files?
e.g. the old Makefile suffix rules that say if you need
*.o
you can get it from*.c
file by runningcc -c -o TARGET SOURCE
In my case, I have a set of encrypted files with a .gpg extension and I'd like to decrypt each one that is newer than its unencrypted version in the working directory. I feel I should be able to do this with
sources
andgenerates
and wildcards somehow... there are about 40 of them, so I don't want a rule for each one...Suggestions welcome!
Beta Was this translation helpful? Give feedback.
All reactions