Advertisement
skwee

Untitled

Jun 5th, 2012
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. #------------------------------------------
  2. # Tools
  3. #------------------------------------------
  4. CC = @gcc
  5. AS = @nasm
  6. LD = @ld
  7. AR = @ar
  8. PRINT = @printf
  9.  
  10. #------------------------------------------
  11. # Flags
  12. #------------------------------------------
  13. CCFLAGS = -c -std=gnu99 -Wall -Wextra -Winline -Werror -nostdlib -nostdinc \
  14. -fno-builtin -fno-stack-protector -nodefaultlibs \
  15. -pedantic -Wshadow -Wcast-align -Wmissing-declarations \
  16. -Wredundant-decls -Wnested-externs \
  17. -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings \
  18. -I$(KERNELINC)
  19. ASFLAGS = -f elf
  20. LDFLAGS = -Tlinker.ld
  21. ARFLAGS = -rcs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement