remove makefiles and other garbage

This commit is contained in:
Timofey Turenko
2015-01-14 19:08:24 +02:00
parent b3824a1eaf
commit 06c2d201e0
102 changed files with 1 additions and 4119 deletions

View File

@ -1,15 +0,0 @@
include buildconfig.inc
CC=gcc
CFLAGS=-c -Wall -g -Iinih $(INCLUDE_DIRS)
LDFLAGS= $(LIBRARY_DIRS) -lrabbitmq -lmysqlclient
SRCS= inih/ini.c consumer.c
OBJ=$(SRCS:.c=.o)
all:$(OBJ)
$(CC) $(LDFLAGS) $(OBJ) -o consumer `mysql_config --cflags --libs`
%.o:%.c
$(CC) $(CFLAGS) $< -o $@
clean:
-rm *.o
-rm *~

0
rabbitmq_consumer/inih/LICENSE.txt Executable file → Normal file
View File

0
rabbitmq_consumer/inih/README.txt Executable file → Normal file
View File

0
rabbitmq_consumer/inih/cpp/INIReader.cpp Executable file → Normal file
View File

0
rabbitmq_consumer/inih/cpp/INIReader.h Executable file → Normal file
View File

0
rabbitmq_consumer/inih/cpp/INIReaderTest.cpp Executable file → Normal file
View File

0
rabbitmq_consumer/inih/examples/config.def Executable file → Normal file
View File

0
rabbitmq_consumer/inih/examples/ini_dump.c Executable file → Normal file
View File

0
rabbitmq_consumer/inih/examples/ini_example.c Executable file → Normal file
View File

0
rabbitmq_consumer/inih/examples/ini_xmacros.c Executable file → Normal file
View File

0
rabbitmq_consumer/inih/examples/test.ini Executable file → Normal file
View File

View File

@ -1,19 +0,0 @@
# Simple makefile to build inih as a static library using g++
SRC = ../ini.c
OBJ = $(SRC:.c=.o)
OUT = libinih.a
INCLUDES = -I..
CCFLAGS = -g -O2
CC = g++
default: $(OUT)
.c.o:
$(CC) $(INCLUDES) $(CCFLAGS) $(EXTRACCFLAGS) -c $< -o $@
$(OUT): $(OBJ)
ar rcs $(OUT) $(OBJ) $(EXTRAARFLAGS)
clean:
rm -f $(OBJ) $(OUT)

0
rabbitmq_consumer/inih/ini.c Executable file → Normal file
View File

0
rabbitmq_consumer/inih/ini.h Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/bad_comment.ini Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/bad_multi.ini Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/bad_section.ini Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/baseline_multi.txt Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/baseline_single.txt Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/bom.ini Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/multi_line.ini Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/normal.ini Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/unittest.c Executable file → Normal file
View File

0
rabbitmq_consumer/inih/tests/user_error.ini Executable file → Normal file
View File