Skip to content

Commit a614ba7

Browse files
committedSep 3, 2016
Move directories, move unused material into future.
1 parent fab50a5 commit a614ba7

23 files changed

+33
-8
lines changed
 
File renamed without changes.

‎fundamentals1/GNUmakefile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
PROGRAMS = add addin
2+
3+
all: $(PROGRAMS)
4+
5+
ALLPROGRAMS = $(PROGRAMS)
6+
7+
include ../common/rules.mk
8+
9+
%.o: %.c $(BUILDSTAMP)
10+
$(CC) $(CPPFLAGS) $(CFLAGS) $(DEPCFLAGS) $(O) -o $@ -c $<
11+
12+
add: add.o addf.o hexdump.o
13+
$(CC) $(CFLAGS) $(O) -o $@ $^
14+
15+
addin: addin.o hexdump.o
16+
$(CC) $(CFLAGS) $(O) -o $@ $^
17+
18+
clean:
19+
rm -f $(ALLPROGRAMS) *.o
20+
rm -rf $(DEPSDIR) *.dSYM
21+
22+
.PHONY: all clean
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎future/.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
add
2+
addin
3+
evil
4+
numset-array
5+
numset-basiclist
6+
numset-bsearchvector
7+
numset-file
8+
numset-list
9+
numset-tree
10+
numset-vector

‎fundamentals-1-lecture/GNUmakefile ‎future/GNUmakefile

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
PROGRAMS = add addin
2-
PROGRAMS += numset-list numset-vector
1+
PROGRAMS = numset-list numset-vector
32
PROGRAMS += numset-file numset-basiclist numset-array
43
PROGRAMS += numset-tree numset-bsearchvector
54

@@ -12,12 +11,6 @@ include ../common/rules.mk
1211
%.o: %.c $(BUILDSTAMP)
1312
$(CC) $(CPPFLAGS) $(CFLAGS) $(DEPCFLAGS) $(O) -o $@ -c $<
1413

15-
add: add.o addf.o hexdump.o
16-
$(CC) $(CFLAGS) $(O) -o $@ $^
17-
18-
addin: addin.o hexdump.o
19-
$(CC) $(CFLAGS) $(O) -o $@ $^
20-
2114
numset-%: numset.o %.o
2215
$(CC) $(CFLAGS) -o $@ $^
2316

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.