diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2022-10-22 02:45:34 +0300 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2022-10-22 02:45:34 +0300 |
commit | fcb9ff2b96de6989e9a676e96753b1b1279acf67 (patch) | |
tree | e9a8839939aac6eeba3dea89ca0c20ad8268150e /Makefile | |
parent | a97b362e6a35be4575f7ded3c31cdeede89ab2a8 (diff) |
hw3 status
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -CFLAGS := -Iinc -g -Og -Wall +CFLAGS := -Iinc -g -Og -Wall #-DDEBUG # Lähtekood SRC := $(wildcard src/*.c) @@ -19,6 +19,10 @@ lib: obj: mkdir obj +.PHONY: run +run: lib/interpret + ./lib/interpret + .PHONY: clean clean: rm -r obj lib |