2020-12-28 22:41:54 (UTC-03:00)
Marcel Rodrigues <marcelgmr@gmail.com>
add Makefile
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d264104 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +OBJ = edit.o map.o txt.o term.o + +all: seqt + +seqt: seqt.c $(OBJ) + $(CC) $(CFLAGS) -o $@ seqt.c $(OBJ) + +$(OBJ): seqt.h + +clean: + $(RM) seqt $(OBJ)