init assignment 1

This commit is contained in:
Michael Zhang 2023-09-22 23:37:36 -05:00
commit 07f514c657
11 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1 @@
IndentWidth: 2

2
assignments/01/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
lc_openmp
lc_pthreads

9
assignments/01/Makefile Normal file
View file

@ -0,0 +1,9 @@
.PHONY: all
all: lc_openmp lc_pthreads
lc_openmp: lc_openmp.c
gcc -o $@ $<
lc_pthreads: lc_pthreads.c
gcc -o $@ $<

View file

View file

@ -0,0 +1 @@
int main() { return 0; }

View file

@ -0,0 +1 @@
int main() { return 0; }

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.