Skip to content

Commit

Permalink
Some fiddling with ASFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
ccs4ever committed Jul 14, 2011
1 parent add604b commit 96b1fba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ srcs := $(wildcard *.c *.s)
objs := $(srcs:%.c=%.o) 00entry.o
objs := $(objs:%.s=%.o)
target := image.elf

%.o : CFLAGS = -Wall -mtune=i386 -mno-mmx -mno-3dnow -mno-sse2 -mno-sse3 -mno-sse -mno-tls-direct-seg-refs -nostdlib -nostdinc -ffreestanding -I../include/
CFLAGS = -Wall -mtune=i386 -mno-mmx -mno-3dnow -mno-sse2 -mno-sse3 -mno-sse -mno-tls-direct-seg-refs -nostdlib -nostdinc -ffreestanding -I../include/
ASFLAGS = -Wall -mtune=i386 -nostdlib -nostdinc -I../include/

all: src

Expand Down

0 comments on commit 96b1fba

Please sign in to comment.