From 9c9161e696556c49fdbd2726fafe5558856e5b39 Mon Sep 17 00:00:00 2001 From: 0xMAC8205 Date: Sun, 24 Nov 2024 13:20:31 +0100 Subject: [PATCH] Moved Makefile --- src/Makefile | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/Makefile diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index f89cfb1..0000000 --- a/src/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -CC=gcc -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