Skip to content
Snippets Groups Projects
Commit 701929ef authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

Added blank file for ass5.

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