Advertisement
STANAANDREY

dspapp ex compile shell

Sep 25th, 2024
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. find . -name "*.c" -exec gcc -Wall -c {} -o {}.o \;
  2. gcc -o dspapp.exe $(find . -name "*.o") -lm #lm-for math.h
  3. find . -name "*.o" -exec rm {} \;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement