diff options
author | Ivan Davydov <lotigara@lotigara.ru> | 2025-06-29 00:08:38 +0300 |
---|---|---|
committer | Ivan Davydov <lotigara@lotigara.ru> | 2025-06-29 00:08:38 +0300 |
commit | 11714ed6c9adc5b6f90bffa1b23d5bb5b2e20bd5 (patch) | |
tree | 9d1831871da0f1906f01cade4440206b6f0f9b84 /Makefile | |
parent | 2cc696105d9f3b8785d2a903211e8adbd707a3e3 (diff) |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,8 +3,9 @@ CC = tcc CFLAGS = -Wall #CPPFLAGS = -D UNIX LDLIBS = -lpthread -lrt +FILES = acccre-server.o #acccre-cmdparser.o all: acccre-server -acccre-server: acccre-server.o +acccre-server: $(FILES) clean: rm -f *.o acccre-server |