Skip to content

Commit 0e1a9d1

Browse files
committed
Update .gitignores, Makefile.
1 parent c9f6a6c commit 0e1a9d1

File tree

5 files changed

+24
-22
lines changed

5 files changed

+24
-22
lines changed

asm2/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
cindex*.s
2+
iindex*.s
3+
sum*.s

storage1x/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
matrixmultiply
2+
wickedmatrixmultiply

storage2/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
w01_sync
2+
w02_syscall
3+
w03_stdio

storage2/GNUmakefile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
PROGRAMS = w01_sync w02_syscall w03_stdio
2+
3+
all: $(PROGRAMS)
4+
5+
include ../common/rules.mk
6+
7+
%.o: %.c $(BUILDSTAMP)
8+
$(CC) $(CPPFLAGS) $(CFLAGS) $(DEPCFLAGS) $(O) -o $@ -c $<
9+
10+
%: %.o
11+
$(CC) $(CFLAGS) -o $@ $^
12+
13+
clean:
14+
rm -f *.o $(ALLPROGRAMS) data
15+
rm -rf $(DEPSDIR) *.dSYM
16+
17+
.PHONY: all clean

storage2/Makefile

-22
This file was deleted.

0 commit comments

Comments
 (0)