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
  1. all: fibb_32 fibb_64 second
  2. fibb_32: fibb_c.c fibb32.s timestamp32.s
  3. gcc -m32 fibb32.s timestamp32.s fibb_c.c -o fibb_32
  4. fibb_64: fibb_c.c fibb64.s timestamp64.s
  5. gcc -no-pie fibb64.s timestamp64.s fibb_c.c -o fibb_64
  6. second: second.c timestamp32.s
  7. gcc -m32 timestamp32.s second.c -o second
  8. clean:
  9. rm fibb_32 fibb_64 second