diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-23 13:34:45 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-23 13:34:45 +0000 |
commit | face0be4c2f7d89ffe0b4facdf8e30c9dbf53a73 (patch) | |
tree | 0c74c94881f300664dc2fe03465e12d3c56201d0 /Source/charon/utils/Makefile.utils | |
parent | 543c1db0eae1df7fbe554f7798b545aa771b1545 (diff) | |
download | strongswan-face0be4c2f7d89ffe0b4facdf8e30c9dbf53a73.tar.bz2 strongswan-face0be4c2f7d89ffe0b4facdf8e30c9dbf53a73.tar.xz |
-
Diffstat (limited to 'Source/charon/utils/Makefile.utils')
-rw-r--r-- | Source/charon/utils/Makefile.utils | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Source/charon/utils/Makefile.utils b/Source/charon/utils/Makefile.utils new file mode 100644 index 000000000..20ea9f7b0 --- /dev/null +++ b/Source/charon/utils/Makefile.utils @@ -0,0 +1,48 @@ +# Copyright (C) 2005 Jan Hutter, Martin Willi +# Hochschule fuer Technik Rapperswil +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# + +UTILS_DIR= $(MAIN_DIR)utils/ + + +OBJS+= $(BUILD_DIR)allocator.o +$(BUILD_DIR)allocator.o : $(UTILS_DIR)allocator.c $(UTILS_DIR)allocator.h + $(CC) $(CFLAGS) -c -o $@ $< + +OBJS+= $(BUILD_DIR)gmp_helper.o +$(BUILD_DIR)gmp_helper.o : $(UTILS_DIR)gmp_helper.c $(UTILS_DIR)gmp_helper.h + $(CC) $(CFLAGS) -c -o $@ $< + +OBJS+= $(BUILD_DIR)host.o +$(BUILD_DIR)host.o : $(UTILS_DIR)host.c $(UTILS_DIR)host.h + $(CC) $(CFLAGS) -c -o $@ $< + +OBJS+= $(BUILD_DIR)linked_list.o +$(BUILD_DIR)linked_list.o : $(UTILS_DIR)linked_list.c $(UTILS_DIR)linked_list.h + $(CC) $(CFLAGS) -c -o $@ $< + +OBJS+= $(BUILD_DIR)logger.o +$(BUILD_DIR)logger.o : $(UTILS_DIR)logger.c $(UTILS_DIR)logger.h + $(CC) $(CFLAGS) -c -o $@ $< + +OBJS+= $(BUILD_DIR)logger_manager.o +$(BUILD_DIR)logger_manager.o : $(UTILS_DIR)logger_manager.c $(UTILS_DIR)logger_manager.h + $(CC) $(CFLAGS) -c -o $@ $< + +OBJS+= $(BUILD_DIR)randomizer.o +$(BUILD_DIR)randomizer.o : $(UTILS_DIR)randomizer.c $(UTILS_DIR)randomizer.h + $(CC) $(CFLAGS) -c -o $@ $< + +OBJS+= $(BUILD_DIR)tester.o +$(BUILD_DIR)tester.o : $(UTILS_DIR)tester.c $(UTILS_DIR)tester.h + $(CC) $(CFLAGS) -c -o $@ $< |