Skip to content

Commit

Permalink
adding asm files
Browse files Browse the repository at this point in the history
  • Loading branch information
jsorg71 committed Sep 4, 2014
1 parent 50cec43 commit de6a45c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

OBJS = rfxencode.o rfxcompose.o rfxencode_tile.o rfxencode_dwt.o rfxencode_quantization.o \
rfxencode_differential.o rfxencode_rlgr3.o
rfxencode_differential.o rfxencode_rlgr3.o \
rfxdwt_sse4.o

CFLAGS = $(PROFIL) -g -O2 -Wall -fPIC -I../include

Expand All @@ -14,5 +15,8 @@ librfxencode.so: $(OBJS) Makefile
$(CC) -shared -o librfxencode.so $(LDFLAGS) $(OBJS) $(LIBS)
$(AR) -rv librfxencode.a $(OBJS)

rfxdwt_sse4.o: x86/rfxdwt_sse4.asm
yasm -f elf32 -g dwarf2 x86/rfxdwt_sse4.asm

clean:
rm -f $(OBJS) librfxencode.so
2 changes: 2 additions & 0 deletions src/x86/rfxdwt_sse4.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@


0 comments on commit de6a45c

Please sign in to comment.