File tree Expand file tree Collapse file tree 4 files changed +45
-0
lines changed
Expand file tree Collapse file tree 4 files changed +45
-0
lines changed Original file line number Diff line number Diff line change @@ -50,3 +50,6 @@ modules.order
5050Module.symvers
5151Mkfile.old
5252dkms.conf
53+
54+ # Other
55+ build /
Original file line number Diff line number Diff line change 1+ CC = gcc
2+ CFLAGS = -x c
3+ STRIP = strip
4+ RM = rm -f
5+
6+
7+ default: all
8+
9+ all: csw0 csw2cdt
10+
11+ csw0: CSW0.C
12+ $(CC) $(CFLAGS) -o csw0 CSW0.C
13+ $(STRIP) csw0
14+
15+ csw2cdt: CSW2CDT.C
16+ $(CC) $(CFLAGS) -o csw2cdt CSW2CDT.C
17+ $(STRIP) csw2cdt
18+
19+ clean:
20+ $(RM) csw0 csw2cdt
Original file line number Diff line number Diff line change 1+ CC = gcc
2+ CFLAGS = -arch arm64 -arch x86_64 -x c
3+ STRIP = strip
4+ RM = rm -f
5+
6+
7+ default: all
8+
9+ all: csw0 csw2cdt
10+
11+ csw0: CSW0.C
12+ $(CC) $(CFLAGS) -o csw0 CSW0.C
13+ $(STRIP) csw0
14+
15+ csw2cdt: CSW2CDT.C
16+ $(CC) $(CFLAGS) -o csw2cdt CSW2CDT.C
17+ $(STRIP) csw2cdt
18+
19+ clean:
20+ $(RM) csw0 csw2cdt
Original file line number Diff line number Diff line change 11# CSW2CDT computer tape tool suite
22
3+ Obtained from < http://cngsoft.no-ip.org/csw2cdt.htm >
4+
35Select your desired language / Elija idioma:
46
57- Click [ this link for English] ( #english )
You can’t perform that action at this time.
0 commit comments