Hello Freedom
This commit is contained in:
37
infidel-code/Makefile
Normal file
37
infidel-code/Makefile
Normal file
@@ -0,0 +1,37 @@
|
||||
CC=sccache gcc
|
||||
CFLAGS=-I include -I test -w
|
||||
SFLAGS=-shared -fPIC
|
||||
DEPS:=$(shell cat ./satan.txt)
|
||||
|
||||
MAKEFLAGS += --silent
|
||||
|
||||
|
||||
all: test_401_full test_593_full
|
||||
@echo "Compiled " $@
|
||||
|
||||
test_401_full:
|
||||
$(CC) $(DEPS) EES401/URG_Keygen.c -o bin/$@ $(CFLAGS)
|
||||
@echo "Compiled " $@
|
||||
|
||||
test_593_full:
|
||||
$(CC) $(DEPS) EES593/URG_Keygen.c -o bin/$@ $(CFLAGS)
|
||||
@echo "Compiled " $@
|
||||
|
||||
enc_593.so:
|
||||
$(CC) $(SFLAGS) $(DEPS) EES593/URG_encrypt.c -o bin/$@ $(CFLAGS)
|
||||
@echo "Compiled " $@
|
||||
|
||||
dec_593.so:
|
||||
$(CC) $(SFLAGS) $(DEPS) EES593/URG_decrypt.c -o bin/$@ $(CFLAGS)
|
||||
@echo "Compiled " $@
|
||||
|
||||
enc_401.so:
|
||||
$(CC) $(SFLAGS) $(DEPS) EES401/URG_encrypt.c -o bin/$@ $(CFLAGS)
|
||||
@echo "Compiled " $@
|
||||
|
||||
dec_401.so:
|
||||
$(CC) $(SFLAGS) $(DEPS) EES401/URG_decrypt.c -o bin/$@ $(CFLAGS)
|
||||
@echo "Compiled " $@
|
||||
clean:
|
||||
@rm bin/*
|
||||
@echo "Bin Cleaned ... "
|
||||
Reference in New Issue
Block a user