254:d7c4ba50b7d8 | 255:bf19378aed58 |
---|---|
1 # | 1 # |
2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | 2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
3 # | 3 # |
4 # Copyright 2015 Olaf Wintermann. All rights reserved. | 4 # Copyright 2016 Olaf Wintermann. All rights reserved. |
5 # | 5 # |
6 # Redistribution and use in source and binary forms, with or without | 6 # Redistribution and use in source and binary forms, with or without |
7 # modification, are permitted provided that the following conditions are met: | 7 # modification, are permitted provided that the following conditions are met: |
8 # | 8 # |
9 # 1. Redistributions of source code must retain the above copyright | 9 # 1. Redistributions of source code must retain the above copyright |
30 | 30 |
31 # list of source files | 31 # list of source files |
32 SRC = utils.c | 32 SRC = utils.c |
33 SRC += list.c | 33 SRC += list.c |
34 SRC += map.c | 34 SRC += map.c |
35 SRC += avl.c | |
35 SRC += properties.c | 36 SRC += properties.c |
36 SRC += mempool.c | 37 SRC += mempool.c |
37 SRC += string.c | 38 SRC += string.c |
38 SRC += test.c | 39 SRC += test.c |
39 SRC += allocator.c | 40 SRC += allocator.c |
41 SRC += logging.c | |
40 SRC += buffer.c | 42 SRC += buffer.c |
41 SRC += logging.c | |
42 SRC += stack.c | 43 SRC += stack.c |
43 SRC += avl.c | |
44 | 44 |
45 OBJ = $(SRC:%.c=../build/ucx/%$(OBJ_EXT)) | 45 OBJ = $(SRC:%.c=../build/ucx/%$(OBJ_EXT)) |
46 | 46 |
47 all: ../build/ucx ../build/libucx$(LIB_EXT) | 47 all: ../build/ucx ../build/libucx$(LIB_EXT) |
48 | 48 |