Commit 701929ef authored by Taddeüs Kroes's avatar Taddeüs Kroes

Added blank file for ass5.

parent c36e9ff8
......@@ -2,7 +2,7 @@ CC=clang
CFLAGS=-Wall -Wextra -pedantic -std=c99 -D_GNU_SOURCE
LFLAGS=-lm
all: q1 q2 q3 q4
all: q1 q2 q3 q4 q5
q%: q%.o
$(CC) $(CFLAGS) $(LFLAGS) -o $@ $^
......@@ -11,7 +11,7 @@ q%: q%.o
$(CC) $(CFLAGS) -o $@ -c $^
clean:
for i in `seq 5`; do \
for i in `seq 6`; do \
rm -vf q$$i; \
done;
rm -vf *.o
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
int main(void) {
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment