Skip to content

Commit

Permalink
Add ez_log to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidchu committed Feb 19, 2025
1 parent d9d9438 commit 5be99f9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion interpreter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CC=gcc
CFLAGS=-Wall -g

.PHONY: all
all: clean build object test_array test_table test_string
all: clean build object test_array test_table test_string test_ez_log

.PHONY: build
build:
Expand All @@ -24,6 +24,10 @@ test_table: build
test_string: build
$(CC) $(CFLAGS) test_string.c -o build/test_string

.PHONY: test_ez_log
test_ez_log: build
$(CC) $(CFLAGS) test_ez_log.c -o build/test_ez_log

.PHONY: clean
clean:
rm -rf build
Expand All @@ -34,4 +38,5 @@ test: all
./build/test_array
./build/test_table
./build/test_string
./build/test_ez_log

0 comments on commit 5be99f9

Please sign in to comment.