summaryrefslogtreecommitdiffstats
path: root/02_exercise/Makefile
diff options
context:
space:
mode:
authorNiklas Halle <niklas@niklashalle.net>2020-05-24 13:05:34 +0200
committerNiklas Halle <niklas@niklashalle.net>2020-05-24 13:05:34 +0200
commit8f33ab3bf8b7d5a256c1d996e572fa67a5578b4f (patch)
tree44c55b4679f8546f940df7191f191ed290c57f6f /02_exercise/Makefile
parentbed31a7634701b2c19ef8eef3ccb3039c03b1cda (diff)
parent7a9c301d10e001b92846b6b1e64136c10c4bb247 (diff)
downloadbetriebssysteme-8f33ab3bf8b7d5a256c1d996e572fa67a5578b4f.tar.gz
betriebssysteme-8f33ab3bf8b7d5a256c1d996e572fa67a5578b4f.zip
Merge remote-tracking branch 'origin/MOAR_CMAKE' into dev/niklas
Diffstat (limited to '02_exercise/Makefile')
-rw-r--r--02_exercise/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/02_exercise/Makefile b/02_exercise/Makefile
index 5d1b360..277b597 100644
--- a/02_exercise/Makefile
+++ b/02_exercise/Makefile
@@ -19,7 +19,7 @@ all: $(TAR)
prog: prog.o
$(CC) -o $@ $^
-shell: $(filter-out prog.o,$(OBJ))
+shell: $(filter-out prog.o prompt_utils_test.o process_test.o, $(OBJ))
$(CC) -o $@ $^
run: all