CFLAGS=-c -DLITTLE_ENDIAN
LINKER=tlink

.c.obj:
        tcc $(CFLAGS) $<

des.exe: main.obj des.obj getpass.obj misc.obj getopt.obj
	$(LINKER) main.obj des.obj getpass.obj misc.obj getopt.obj,des $(LFLAGS);

benchmark.exe: benchmark.obj des.obj
	$(LINKER) benchmark.obj des.obj, benchmark $(LFLAGS);

descert.exe: descert.obj des.obj
	$(LINKER) descert.obj des.obj, descert $(LFLAGS);

descalc.exe: descalc.obj des.obj
	$(LINKER) descalc.obj des.obj, descalc $(LFLAGS);

descycle.exe: descycle.obj des.obj
	$(LINKER) descycle.obj des.obj, descycle $(LFLAGS);
