summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rwxr-xr-xsrc/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 405812f..4c2e4ef 100755
--- a/src/Makefile
+++ b/src/Makefile
@@ -14,7 +14,7 @@ FILES = interface.o font.o list.o image.o layer.o director.o configFile.o tux.o
item.o widget_label.o screen_mainMenu.o widget_button.o screen_analyze.o widget_textfield.o \
widget_check.o widget_image.o screen_setting.o screen_gameType.o screen_choiceArena.o \
widget_buttonimage.o screen_credits.o teleport.o pipe.o homeDirector.o screen_table.o \
- sdl_udp.o proto.o server.o client.o
+ sdl_udp.o proto.o server.o client.o term.o
tuxanci-ng: $(FILES)
$(CC) $(CFLAGS) $(LIBS) -o tuxanci-ng $(FILES)
@@ -166,5 +166,8 @@ homeDirector.o: homeDirector.c ../include/homeDirector.h
screen_table.o: screen_table.c ../include/screen_table.h
$(CC) $(CFLAGS) -o screen_table.o -c screen_table.c
+term.o: term.c ../include/term.h
+ $(CC) $(CFLAGS) -o term.o -c term.c
+
clean:
rm -rf *.o *.c~ ../include/*.h~ Makefile~ tuxanci-ng