diff options
author | Oskar <[email protected]> | 2024-03-31 21:30:11 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-03-31 21:30:11 +0200 |
commit | 6104c0ee7257ae99e5187f56593442ca9f04084b (patch) | |
tree | 437957ae25f7bd1544f6c725425213244d94e704 /Makefile | |
parent | a2fe6b4251181b65da4264c179c5df39c22159de (diff) |
Started integrating the input system. Mainly trying to integrate the
'singles' so far because they will be the easiest.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ clean: tests: echo "CC 7ed.c functions.c startmode.c editmode.c ---> test/$(TESTTARGET)" - $(CC) $(CFLAGS_TESTBIN) 7ed.c functions.c startmode.c editmode.c -o test/$(TESTTARGET) + $(CC) $(CFLAGS_TESTBIN) 7ed.c functions.c startmode.c editmode.c input.c i_validation.c -o test/$(TESTTARGET) install: cp $(TARGET) $(INSTALL_DIRECTORY) |