Compare commits

..

No commits in common. "bca7c6f3fcd24fce9892a93c491ef2e150eeba0d" and "aca1c11106f40442434f5c8ac79c0f8cf56e6fa4" have entirely different histories.

2 changed files with 6 additions and 7 deletions

View file

@ -1,4 +1,8 @@
ifeq (, $(shell which xclip 2>/dev/null))
PASTE = powershell.exe Get-Clipboard
else
PASTE = xclip -o
endif
CAT = bat -pp
FILE ?= test

View file

@ -2,12 +2,11 @@ RM = rm -rf
TAR = tar -czf
CP = cp -r
MKDIR = mkdir -p
PASTE = xclip -o
SRC_DIR = src
BIN_DIR = bin
ENTRY := App
ENTRY = App
ARCHIVE_NAME = nom
ARCHIVE_EXT = tar.gz
@ -19,10 +18,6 @@ run:
compilation:
find $(SRC_DIR) -name "*.java" -print | xargs javac -d $(BIN_DIR)
paste:
mkdir -p $(SRC_DIR)
$(PASTE) > $(SRC_DIR)/Main.java
all:
run