diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-17 03:22:53 +0000 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-17 03:22:53 +0000 |
commit | 75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5 (patch) | |
tree | 498ac06b4cf78568b807fafd2619856afff69c28 /omega/examples/c_code/Makefile | |
parent | 29efa7b1a0d089e02a70f73f348f11878955287c (diff) | |
download | chill-75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5.tar.gz chill-75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5.tar.bz2 chill-75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5.zip |
cmake build
Diffstat (limited to 'omega/examples/c_code/Makefile')
-rw-r--r-- | omega/examples/c_code/Makefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/omega/examples/c_code/Makefile b/omega/examples/c_code/Makefile deleted file mode 100644 index 5d4dd61..0000000 --- a/omega/examples/c_code/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -CC = g++ -INC_DIR = -I../../include -LIB_DIR = -L../../lib - -all: example library_example - - -example : example.o ../../lib/libomega.a - ${CC} -g $(LIB_DIR) example.o -lomega -o example - -example.o : example.c - ${CC} -Wall -g $(INC_DIR) -c example.c - -library_example : library_example.o ../../lib/libomega.a - ${CC} -g $(LIB_DIR) library_example.o -lomega -o library_example - -library_example.o : library_example.c - ${CC} -Wall -g $(INC_DIR) -c library_example.c - -clean: - @rm -fr *.o example library_example |