AMF parser sturdyfied en zo, also nieuw testprogramma FTW
This commit is contained in:
parent
a28a3668bf
commit
8a118721c9
4 changed files with 420 additions and 396 deletions
19
AMF_Tester/Makefile
Normal file
19
AMF_Tester/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
SRC = main.cpp
|
||||
OBJ = $(SRC:.cpp=.o)
|
||||
OUT = AMFtest
|
||||
INCLUDES =
|
||||
CCFLAGS = -Wall -Wextra -funsigned-char -g
|
||||
CC = $(CROSS)g++
|
||||
LD = $(CROSS)ld
|
||||
AR = $(CROSS)ar
|
||||
LIBS = -lssl -lcrypto
|
||||
.SUFFIXES: .cpp
|
||||
.PHONY: clean default
|
||||
default: $(OUT)
|
||||
.cpp.o:
|
||||
$(CC) $(INCLUDES) $(CCFLAGS) -c $< -o $@
|
||||
$(OUT): $(OBJ) amf.cpp
|
||||
$(CC) $(LIBS) -o $(OUT) $(OBJ)
|
||||
clean:
|
||||
rm -rf $(OBJ) $(OUT) Makefile.bak *~
|
||||
|
1
AMF_Tester/amf.cpp
Symbolic link
1
AMF_Tester/amf.cpp
Symbolic link
|
@ -0,0 +1 @@
|
|||
../util/amf.cpp
|
Loading…
Add table
Add a link
Reference in a new issue