Compare commits

..

No commits in common. "6ec0f108e80825eeecd71f95c95998fcbe901c53" and "bf14e2dc8712c0c19cd52d0e830b9ed2af91c118" have entirely different histories.

2 changed files with 0 additions and 18 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
bin/

View File

@ -1,17 +0,0 @@
CFLAGS=-lcsfml-window -lcsfml-system -lcsfml-graphics
PREFIX=$(HOME)/.local
CACHE=$(shell if [ "$$XDG_CACHE_HOME" ]; then echo "$$XDG_CACHE_HOME"; else echo "$$HOME"/.cache; fi)
all: ls7emulator
clean:
rm -f ls7emulator $(CACHE)/ls7emulator
ls7emulator: ls7emulator.c ls7emulator.h config.h
$(CC) ls7emulator.c -o ls7emulator $(CFLAGS)
strip ls7emulator
install: ls7emulator
mkdir -p $(PREFIX)/bin
install ./ls7emulator $(PREFIX)/bin/ls7emulator
cp ./ls7emulator /usr/bin/ls7emulator