forked from 131/lab4_sort
init commit
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal file
@@ -0,0 +1,17 @@
|
||||
sort_bin=./sort_test
|
||||
CFLAGS=-Wall -ggdb
|
||||
|
||||
all: $(sort_bin)
|
||||
|
||||
$(sort_bin): sort.o
|
||||
$(CC) $(CFLAGS) $^ -o $@
|
||||
|
||||
clean:
|
||||
rm *.o $(sort_bin)
|
||||
|
||||
test: $(heap_bin) $(arrheap_bin) $(vector_bin) $(list_bin)
|
||||
$(vector_bin)
|
||||
$(list_bin)
|
||||
$(hash_bin)
|
||||
$(heap_bin)
|
||||
$(arrheap_bin)
|
||||
Reference in New Issue
Block a user