diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4b35383 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CC=gcc + +main.out: main.c + ./main | tee main.out + +main: main.o get_student_id.o + cc -o main + +main.o: main.c + cc -c main.c + +get_stedent_id.o: get_student_id.c + cc -c get_student_id.c diff --git a/README b/README index 74ddb0e..72c5804 100644 --- a/README +++ b/README @@ -1,3 +1,3 @@ Contributors: Toby Dylan Hocking -ADD YOUR NAME HERE \ No newline at end of file +Kira Newman diff --git a/get_student_id.c b/get_student_id.c index 8ffa600..d8d9a70 100644 --- a/get_student_id.c +++ b/get_student_id.c @@ -1,3 +1,3 @@ int get_student_id(void){ - return 3331212; + return 6229410; }