Różne programy na zajęcia laboratoryjne z AK2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- all: fibb_32 fibb_64 second
-
- fibb_32: fibb_c.c fibb32.s timestamp32.s
- gcc -m32 fibb32.s timestamp32.s fibb_c.c -o fibb_32
-
- fibb_64: fibb_c.c fibb64.s timestamp64.s
- gcc -no-pie fibb64.s timestamp64.s fibb_c.c -o fibb_64
-
- second: second.c timestamp32.s
- gcc -m32 timestamp32.s second.c -o second
-
- clean:
- rm fibb_32 fibb_64 second
|