Browse Source

No Windows

Piotr Czajkowski 4 years ago
parent
commit
2d800ca762
3 changed files with 1 additions and 10 deletions
  1. 1 3
      README.md
  2. 0 7
      makefile
  3. BIN
      win/bomToolkit.exe

+ 1 - 3
README.md

@@ -13,8 +13,6 @@ I've also added simple wrapper, so you can use it as executable:
 	./bomToolkit <filePath> r - to remove BOM.
 	./bomToolkit <filePath> a - to add BOM.
 
-And you can find Windows executable in *win* subfolder.
-
 It's 22 times faster than similar one I've written in C#, so either C is faster at that or I've written it better:) Enjoy!
 
-***As always, you can use it as you want, but I give you no warranty.***
+***As always, you can use it as you want, but I give you no warranty.***

+ 0 - 7
makefile

@@ -1,6 +1,5 @@
 CFLAGS=-Wall -Wextra -Wshadow -O3 -std=c99
 objects=bom.o
-mingw=x86_64-w64-mingw32-gcc
 
 bomToolkit: $(objects)
 
@@ -17,10 +16,4 @@ test:
 	@rm testRemove
 	@rm testAdd
 
-win/bomToolkit.exe:
-	$(mingw) $(CFLAGS) -c bom.c
-	$(mingw) $(CFLAGS) bomToolkit.c $(objects) -o $@
-
-win: win/bomToolkit.exe
-
 default: bomToolkit

BIN
win/bomToolkit.exe