This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
domeTimer/Makefile
Mats van Reenen acaf867434 inital commit
2020-12-24 22:36:51 +01:00

16 lines
298 B
Makefile

CC := gcc
CURDIR := $(shell pwd)
DEBUGDIR := $(CURDIR)/debug
SRCDIR := $(CURDIR)/src
main.o: src/main.c
$(CC) -c $(SRCDIR)/main.c -o $(DEBUGDIR)/main.o
domeTimer: main.o
$(CC) $(SRCDIR)/main.c -o $(CURDIR)/domeTimer
all: domeTimer
clean:
rm -p domeTimer $(DEBUGDIR)/*