Browse Source

Erase binary files - clean action on Makefile

Cyrille 10 years ago
parent
commit
1fad8cf838
6 changed files with 8 additions and 0 deletions
  1. 2 0
      .gitignore
  2. 3 0
      emit/Makefile
  3. BIN
      emit/emit
  4. BIN
      emit/emit.o
  5. BIN
      emit/emitlib.o
  6. 3 0
      listen/Makefile

+ 2 - 0
.gitignore

@@ -1,3 +1,5 @@
 listen/*.o
 listen/listen
 listen/*.txt
+emit/*.o
+emit/emit

+ 3 - 0
emit/Makefile

@@ -8,3 +8,6 @@ emit.o : emit.c
 
 emitlib.o : emitlib.c emitlib.h
 	gcc -c emitlib.c
+
+clean:
+	rm -f emit *.o

BIN
emit/emit


BIN
emit/emit.o


BIN
emit/emitlib.o


+ 3 - 0
listen/Makefile

@@ -8,3 +8,6 @@ listen.o : listen.c
 
 listenlib.o : listenlib.c listenlib.h
 	gcc -c listenlib.c
+
+clean:
+	rm listen *.o