diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,7 +1,9 @@ CC = gcc +LD = gcc AR = ar rcs -CPPFLAGS = -g -Wall -Werror +CPPFLAGS = -g -Wall -Werror -D_FILE_OFFSET_BITS=64 +LDFLAGS = -g -lssl SOURCE_LIST = \ MPQCryptography.c \ @@ -23,6 +25,9 @@ all: dep $(TARGET) $(TARGET): $(OBJ_LIST) $(AR) $@ $(OBJ_LIST) +test-it: $(TARGET) test-it.o + $(LD) -o test-it test-it.o $(TARGET) $(LDFLAGS) + clean: rm -f *.o *.dep $(TARGET) |