Atlas - Makefile

Home / usr / key_detect Lines: 1 | Size: 318 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)]
[FILE BEGIN]
1# Key detect (Makefile) 2# A simple program to detect keypresses. 3# Github: https://www.github.com/0x4248/key_detect 4 5CC = gcc 6CFLAGS = 7 8SRC = src 9MAIN = main.c 10 11BIN = bin 12OUTPUT = key_detect 13 14all: init compile 15 16init: 17 mkdir -p $(BIN) 18 19compile: 20 $(CC) $(CFLAGS) $(SRC)/$(MAIN) -o $(BIN)/$(OUTPUT) 21 22clean: 23 rm -rf $(BIN)
[FILE END]
(C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.