diff options
Diffstat (limited to 'rushs/evalexpr/sieve_eratosthenes_advanced/Makefile')
| -rw-r--r-- | rushs/evalexpr/sieve_eratosthenes_advanced/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/rushs/evalexpr/sieve_eratosthenes_advanced/Makefile b/rushs/evalexpr/sieve_eratosthenes_advanced/Makefile new file mode 100644 index 0000000..c7e35f9 --- /dev/null +++ b/rushs/evalexpr/sieve_eratosthenes_advanced/Makefile @@ -0,0 +1,13 @@ +CC=gcc +CFLAGS=-std=c99 -Wall -Wextra -Werror -Wvla -pedantic +LDLIBS= + +all: sieve.o + +sieve.o: sieve.c + $(CC) $(CFLAGS) -c -o sieve.o sieve.c + +.PHONY: clean + +clean: + rm sieve.o |
