Skip to content

Commit

Permalink
added tweaks for Debian Environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilsonfsilva committed May 26, 2024
1 parent 0f0d0eb commit 6d84d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
SRC = `find src/ -type f -name '*.sh'`
SRC = `find src/ -type f -name '*.sh'|LC_ALL=C sort`
OUTFILE = bashacks.sh
BASHRCFILE = ~/.profile
BASHACKS = `pwd`/$(OUTFILE)

all:
>$(OUTFILE)
for file in $(SRC); do \
cat $$file >> $(OUTFILE); \
(echo '#!/bin/bash' && cat $$file) >> $(OUTFILE); \
echo >> $(OUTFILE); \
done
tr -d \\r < $(OUTFILE) > $(OUTFILE).tmp
Expand Down

0 comments on commit 6d84d11

Please sign in to comment.