repo cleanup

This commit is contained in:
Stephen Toth 2023-09-23 11:41:34 -04:00
parent d0a049d994
commit 32e65cbf05
3 changed files with 9 additions and 1 deletions

4
.gitignore vendored
View File

@ -1,6 +1,10 @@
# Ignore the build and lib dirs
build/*
testing/*.lp
#lib/*
# Ignore any executables
bin/*
# Ignore temp editor files
*.swp

View File

@ -1,6 +1,7 @@
CC := gcc
SRCDIR := src
BUILDDIR := build
TESTDIR := testing
TARGET := bin/cterm
SRCEXT := c
SOURCES := $(shell find $(SRCDIR) -type f -name *.$(SRCEXT))
@ -23,6 +24,9 @@ clean:
@echo " $(RM) -r $(BUILDDIR) $(TARGET)"; $(RM) -r $(BUILDDIR) $(TARGET)
test:
$(TARGET) /bin/shxi
$(TARGET) /bin/sh
trace:
strace -o $(TESTDIR)/trace.lp $(TARGET) /bin/sh
.PHONY: clean

BIN
src/main

Binary file not shown.