Remove accidentally added .o files and add *.o to .gitignore

This commit is contained in:
David Reid
2010-10-12 10:27:06 -07:00
parent b66ec96249
commit 8ebf31c83b
5 changed files with 1 additions and 16 deletions

1
.gitignore vendored
View File

@@ -6,3 +6,4 @@ sqlite3.plt
ebin
priv
erl_crash.dump
*.o

View File

@@ -1,16 +0,0 @@
ERL_INTERFACE=@ERLANG_LIB_DIR_erl_interface@
ERL_ROOT=@ERLANG_ROOT_DIR@
GCC=gcc
LDFLAGS=-shared -L/usr/lib -lsqlite3 -undefined -fPIC -lerl_interface -L$(ERL_INTERFACE)/lib -lei
SRCS=sqlite3_drv.c sqlite3_drv.h
OUTPUT=sqlite3_drv.so
CFLAGS=-o ../ebin/${OUTPUT} -I$(ERL_ROOT)/usr/include/ -I$(ERL_INTERFACE)/include/ -DNULL_ATOM=@NULL_ATOM@
all: ../ebin/${OUTPUT}
../ebin/${OUTPUT}: sqlite3_drv.c sqlite3_drv.h
${GCC} sqlite3_drv.c ${LDFLAGS} ${CFLAGS}
clean:
rm -rf ../ebin/${OUTPUT}

Binary file not shown.

Binary file not shown.

Binary file not shown.