diff options
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 |