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.

Makefile 120B

12345678910
  1. all: echo
  2. echo: echo.o
  3. ld -melf_i386 echo.o -o echo
  4. echo.o: echo.s
  5. as --32 echo.s -o echo.o
  6. clean:
  7. rm echo echo.o