Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Win32/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
CC = gcc
CFLAGS = -Wall -O2
OBJS = main.o input.o output.o debug.o
TARGET = tsl

$(TARGET): $(OBJS)
$(CC) -o $(TARGET) $(OBJS)

%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@

clean:
rm -f $(OBJS) $(TARGET)
4 changes: 2 additions & 2 deletions Win32/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ Property* parse_property( char* name, size_t length, boolean add_prop )
return props[ tot_props++ ];
}

printf( "\nThe property '%s' is not defined.\nQuitting\n\n", tmp_name );
exit( EXIT_FAILURE );
// printf( "\nThe property '%s' is not defined.\nQuitting\n\n", tmp_name );
// exit( EXIT_FAILURE );
}


Expand Down