37 lines
		
	
	
		
			655 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			655 B
		
	
	
	
		
			Makefile
		
	
	
	
CC = gcc
 | 
						|
 | 
						|
SRCS = bitvector.c hashing.c socket.c timefuncs.c ptrhash.c utf8.c ios.c \
 | 
						|
	dirpath.c htable.c bitvector-ops.c int2str.c dump.c random.c \
 | 
						|
	lltinit.c arraylist.c
 | 
						|
OBJS = $(SRCS:%.c=%.o)
 | 
						|
DOBJS = $(SRCS:%.c=%.do)
 | 
						|
TARGET = libllt.a
 | 
						|
 | 
						|
FLAGS = -Wall -Wno-strict-aliasing $(CFLAGS)
 | 
						|
LIBS =
 | 
						|
 | 
						|
DEBUGFLAGS = -g -DDEBUG $(FLAGS)
 | 
						|
SHIPFLAGS = -O3 -DNDEBUG $(FLAGS)
 | 
						|
 | 
						|
default: release
 | 
						|
 | 
						|
%.o: %.c
 | 
						|
	$(CC) $(SHIPFLAGS) -c $< -o $@
 | 
						|
%.do: %.c
 | 
						|
	$(CC) $(DEBUGFLAGS) -c $< -o $@
 | 
						|
 | 
						|
debug: $(DOBJS)
 | 
						|
	rm -rf $(TARGET)
 | 
						|
	ar rs $(TARGET) $(DOBJS)
 | 
						|
 | 
						|
release: $(OBJS)
 | 
						|
	rm -rf $(TARGET)
 | 
						|
	ar rs $(TARGET) $(OBJS)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f *.o
 | 
						|
	rm -f *.do
 | 
						|
	rm -f *~
 | 
						|
	rm -f core*
 | 
						|
	rm -f $(TARGET)
 |