This website requires JavaScript.
Explore
Help
Register
Sign In
luke
/
magic
mirror of
https://github.com/RTimothyEdwards/magic.git
Watch
1
Star
0
Fork
You've already forked magic
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
02e16b8bce
magic
/
scripts
/
printmans
8 lines
89 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Build Updates This is a series of updates to make building magic far less of a headache: * Drop `csh`/`tcsh` dependency and detection from `./configure`. * Rewrite makedbh in Python. * Rewrite printmans in POSIX sh. * Stop deleting Depend before every compile (which causes some files to recompile and thus increases recompile times significantly) * Add Depend to CLEANS in scripts/defs.mak.in * Turn POSIX suffix rule in magic/rules.mak to a pattern rule with proper prerequisites
2023-07-16 18:37:48 +02:00
#!/bin/sh
cmd=$1
shift
Initial commit at Tue Apr 25 08:41:48 EDT 2017 by tim on stravinsky
2017-04-25 14:41:48 +02:00
Build Updates This is a series of updates to make building magic far less of a headache: * Drop `csh`/`tcsh` dependency and detection from `./configure`. * Rewrite makedbh in Python. * Rewrite printmans in POSIX sh. * Stop deleting Depend before every compile (which causes some files to recompile and thus increases recompile times significantly) * Add Depend to CLEANS in scripts/defs.mak.in * Turn POSIX suffix rule in magic/rules.mak to a pattern rule with proper prerequisites
2023-07-16 18:37:48 +02:00
for i in "$@"; do
echo "cat $i | $cmd"
Initial commit at Tue Apr 25 08:41:48 EDT 2017 by tim on stravinsky
2017-04-25 14:41:48 +02:00
cat $i | $cmd
Build Updates This is a series of updates to make building magic far less of a headache: * Drop `csh`/`tcsh` dependency and detection from `./configure`. * Rewrite makedbh in Python. * Rewrite printmans in POSIX sh. * Stop deleting Depend before every compile (which causes some files to recompile and thus increases recompile times significantly) * Add Depend to CLEANS in scripts/defs.mak.in * Turn POSIX suffix rule in magic/rules.mak to a pattern rule with proper prerequisites
2023-07-16 18:37:48 +02:00
done