diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d61353a --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +main.o: main.c + cc -c main.c +get_student_id.o: get_student_id.c + cc -c get_student_id.c +main: main.o get_student_id.o + cc -o +main.out: main + ./main|tee main.out diff --git a/README.md b/README.md index aa90123..06f35bd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # CS305_FINAL Contributors: Tayyaba Shaheen -ADD YOUR NAME HERE +Justin Meier diff --git a/get_student_id.c b/get_student_id.c index 8ffa600..a2d2f16 100644 --- a/get_student_id.c +++ b/get_student_id.c @@ -1,3 +1,3 @@ int get_student_id(void){ - return 3331212; + return 6033484; } diff --git a/main.o b/main.o new file mode 100644 index 0000000..6607653 Binary files /dev/null and b/main.o differ