diff options
author | David Phillips <david@sighup.nz> | 2018-08-01 23:42:14 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-08-01 23:42:18 +1200 |
commit | 5bc170c54464a786136c1d7c0aefe732cd79dd14 (patch) | |
tree | e36c6466c890267a62189a18327c9294e8470592 /Makefile | |
parent | d4a083dec30a5ed2732a13d75140a8e51a21598b (diff) | |
download | hence-5bc170c54464a786136c1d7c0aefe732cd79dd14.tar.xz |
Rename simulator
This project has had a name for a while now
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,15 +1,15 @@ CFLAGS += -std=c99 -D_XOPEN_SOURCE=500 -D_POSIX_C_SOURCE=200809L -Wall -Wextra -all: simulator +all: hence -simulator: simulator.o common.o gate.o logic.o lex.o parse.o +hence: hence.o common.o gate.o logic.o lex.o parse.o .PHONY: test test: all $(MAKE) -C test all test clean: - rm -f parser simulator + rm -f hence rm -f *.o full-clean: clean |